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 [b]Input Map[/b] tab in the [b]Project > Project Settings[/b], or with the [InputMap] class. https://docs.godotengine.org/en/latest/tutorials/inputs/index.html This will simulate pressing the specified action. The strength can be used for non-boolean actions, it's ranged between 0 and 1 representing the intensity of the given action. If the specified action is already pressed, this will release it. Adds 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 acceleration. Otherwise, it returns an empty [Vector3]. Note this method returns an empty [Vector3] when running from the editor even when your device has an accelerometer. You must export your project to a supported device to read values from the accelerometer. Returns a value between 0 and 1 representing the intensity of the given action. In a joypad, for example, the further away the axis (analog sticks or L2, R2 triggers) is from the dead zone, the closer the value will be to 1. If the action is mapped to a control that has no axis as the keyboard, the value returned will be 0 or 1. Returns an [Array] containing the device IDs of all currently connected joypads. If the device has an accelerometer, this will return the gravity. Otherwise, it returns an empty [Vector3]. If the device has a gyroscope, this will return the rate of rotation in rad/s around a device's X, Y, and Z axes. Otherwise, it returns an empty [Vector3]. Returns the current value of the joypad axis at given index (see [enum JoystickList]). Returns the index of the provided axis name. Receives a [enum JoystickList] axis and returns its equivalent name as a string. Returns the index of the provided button name. Receives a gamepad button from [enum JoystickList] and returns its equivalent name as a string. Returns a SDL2-compatible device GUID on platforms that use gamepad remapping. Returns [code]"Default Gamepad"[/code] 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. Returns the mouse mode. See the constants for more information. Returns [code]true[/code] when the user starts pressing the action event, meaning it's [code]true[/code] only on the frame that the user pressed down the button. This is useful for code that needs to run only once when an action is pressed, instead of every frame while it's pressed. Returns [code]true[/code] when the user stops pressing the action event, meaning it's [code]true[/code] only on the frame that the user released the button. Returns [code]true[/code] if you are pressing the action event. Note that if an action has multiple buttons asigned and more than one of them is pressed, releasing one button will release the action, even if some other button assigned to this action is still pressed. Returns [code]true[/code] if you are pressing the joypad button (see [enum JoystickList]). 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 [enum JoystickList]. 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 a [enum KeyList] constant. Returns [code]true[/code] if you are pressing the mouse button specified with [enum ButtonList]. Feeds an [InputEvent] to the game. Can be used to artificially trigger input events from code. Removes all mappings from the internal database that match the given GUID. Sets a custom mouse cursor image, which is only visible inside the game window. The hotspot can also be specified. Passing [code]null[/code] to the image parameter resets to the system cursor. See enum [code]CURSOR_*[/code] for the list of shapes. [code]image[/code]'s size must be lower than 256×256. [code]hotspot[/code] must be within [code]image[/code]'s size. Sets the default cursor shape to be used in the viewport instead of [constant CURSOR_ARROW]. [b]Note:[/b] If you want to change the default cursor shape for [Control]'s nodes, use [member Control.mouse_default_cursor_shape] instead. [b]Note:[/b] This method generates an [InputEventMouseMotion] to update cursor immediately. Sets the mouse mode. See the constants for more information. Whether to accumulate similar input events sent by the operating system. Enabled by default. Starts to vibrate the joypad. Joypads usually come with two rumble motors, a strong and a weak one. [code]weak_magnitude[/code] is the strength of the weak motor (between 0 and 1) and [code]strong_magnitude[/code] is the strength of the strong motor (between 0 and 1). [code]duration[/code] is the duration of the effect in seconds (a duration of 0 will try to play the vibration indefinitely). [b]Note:[/b] Not every hardware is compatible with long effect durations; it is recommended to restart an effect if it has to be played 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. On Windows and Linux, the mouse will use raw input mode, which means the reported movement will be unaffected by the OS' mouse acceleration settings. Makes the mouse cursor visible but confines it to the game window. Arrow cursor. Standard, default pointing cursor. I-beam cursor. Usually used to show where the text cursor will appear when the mouse is clicked. Pointing hand cursor. Usually used to indicate the pointer is over a link or other interactable item. Cross cursor. Typically appears over regions in which a drawing operation can be performed or for selections. Wait cursor. Indicates that the application is busy performing an operation. This cursor shape denotes that the application is still usable during the operation. Busy cursor. Indicates that the application is busy performing an operation. This cursor shape denotes that the application isn't usable during the operation (e.g. something is blocking its main thread). Drag cursor. Usually displayed when dragging something. Can drop cursor. Usually displayed when dragging something to indicate that it can be dropped at the current position. Forbidden cursor. Indicates that the current action is forbidden (for example, when dragging something) or that the control at a position is disabled. Vertical resize mouse cursor. A double-headed vertical arrow. It tells the user they can resize the window or the panel vertically. Horizontal resize mouse cursor. A double-headed horizontal arrow. It tells the user they can resize the window or the panel horizontally. Window resize mouse cursor. The cursor is a double-headed arrow that goes from the bottom left to the top right. It tells the user they can resize the window or the panel both horizontally and vertically. Window resize mouse cursor. The cursor is a double-headed arrow that goes from the top left to the bottom right, the opposite of [constant CURSOR_BDIAGSIZE]. It tells the user they can resize the window or the panel both horizontally and vertically. Move cursor. Indicates that something can be moved. Vertical split mouse cursor. On Windows, it's the same as [constant CURSOR_VSIZE]. Horizontal split mouse cursor. On Windows, it's the same as [constant CURSOR_HSIZE]. Help cursor. Usually a question mark.