A Singleton that deals with inputs. A Singleton that deals with inputs. This includes key presses, mouse buttons and movement, joypads, and input actions. Actions and their events can be set in the Project Settings / Input Map tab. Or be set with [InputMap]. This will simulate pressing the specified action. If the specified action is already pressed, this will release it. Add a new mapping entry (in SDL2 format) to the mapping database. Optionally update already connected devices. If the device has an accelerometer, this will return the movement. Returns an [Array] containing the device IDs of all currently connected joypads. If the device has a gyroscope, this will return the rate of rotation in rad/s around a device's x, y, and z axis. Returns the current value of the joypad axis at given index (see [code]JOY_*[/code] constants in [@GlobalScope]) Returns a SDL2 compatible device guid on platforms that use gamepad remapping. Returns "Default Gamepad" otherwise. Returns the name of the joypad at the specified device index Returns the duration of the current vibration effect in seconds. Returns the strength of the joypad vibration: x is the strength of the weak motor, and y is the strength of the strong motor. Returns the mouse speed for the last time the cursor was moved, and this until the next frame where the mouse moves. This means that even if the mouse is not moving, this function will still return the value of the last motion. If the device has a magnetometer, this will return the magnetic field strength in micro-Tesla for all axes. Returns mouse buttons as a bitmask. If multiple mouse buttons are pressed at the same time the bits are added together. Return the mouse mode. See the constants for more information. Returns [code]true[/code] when you start pressing the action event. Returns [code]true[/code] when you stop pressing the action event. Returns [code]true[/code] if you are pressing the action event. Returns [code]true[/code] if you are pressing the joypad button. (see [code]JOY_*[/code] constants in [@GlobalScope]) Returns [code]true[/code] if the system knows the specified device. This means that it sets all button and axis indices exactly as defined in the [code]JOY_*[/code] constants (see [@GlobalScope]). Unknown joypads are not expected to match these constants, but you can still retrieve events from them. Returns [code]true[/code] if you are pressing the key. You can pass [code]KEY_*[/code], which are pre-defined constants listed in [@GlobalScope]. Returns [code]true[/code] if you are pressing the mouse button. You can pass [code]BUTTON_*[/code], which are pre-defined constants listed in [@GlobalScope]. Removes all mappings from the internal db that match the given uid. Set a custom mouse cursor image, which is only visible inside the game window. The hotspot can also be specified. See enum [code]CURSOR_*[/code] for the list of shapes. Set the mouse mode. See the constants for more information. Starts to vibrate the joypad. Joypads usually come with two rumble motors, a strong and a weak one. weak_magnitude is the strength of the weak motor (between 0 and 1) and strong_magnitude is the strength of the strong motor (between 0 and 1). duration is the duration of the effect in seconds (a duration of 0 will try to play the vibration indefinitely). Note that not every hardware is compatible with long effect durations, it is recommended to restart an effect if in need to play it for more than a few seconds. Stops the vibration of the joypad. Sets the mouse position to the specified vector. Emitted when a joypad device has been connected or disconnected Makes the mouse cursor visible if it is hidden. Makes the mouse cursor hidden if it is visible. Captures the mouse. The mouse will be hidden and unable to leave the game window. But it will still register movement and mouse button presses.