Click or drag to resize

Input Class

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 Input Map tab in the Project > Project Settings, or with the InputMap class.

Inheritance Hierarchy
SystemObject
  GodotInput

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public static class Input

The Input type exposes the following members.

Properties
  NameDescription
Public propertyStatic memberSingleton
Top
Methods
  NameDescription
Public methodStatic memberActionPress

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.

Note: This method will not cause any _Input(InputEvent) calls. It is intended to be used with IsActionPressed(String) and IsActionJustPressed(String). If you want to simulate _input, use ParseInputEvent(InputEvent) instead.

Public methodStatic memberActionRelease

If the specified action is already pressed, this will release it.

Public methodStatic memberAddJoyMapping

Adds a new mapping entry (in SDL2 format) to the mapping database. Optionally update already connected devices.

Public methodStatic memberGetAccelerometer

Returns the acceleration of the device's accelerometer sensor, if the device has one. Otherwise, the method returns .

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.

Note: This method only works on iOS, Android, and UWP. On other platforms, it always returns . On Android the unit of measurement for each axis is m/s² while on iOS and UWP it's a multiple of the Earth's gravitational acceleration g (~9.81 m/s²).

Public methodStatic memberGetActionStrength

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.

Public methodStatic memberGetConnectedJoypads

Returns an Array containing the device IDs of all currently connected joypads.

Public methodStatic memberGetCurrentCursorShape
Public methodStatic memberGetGravity

Returns the gravity of the device's accelerometer sensor, if the device has one. Otherwise, the method returns .

Note: This method only works on Android and iOS. On other platforms, it always returns . On Android the unit of measurement for each axis is m/s² while on iOS it's a multiple of the Earth's gravitational acceleration g (~9.81 m/s²).

Public methodStatic memberGetGyroscope

Returns the rotation rate in rad/s around a device's X, Y, and Z axes of the gyroscope sensor, if the device has one. Otherwise, the method returns .

Note: This method only works on Android and iOS. On other platforms, it always returns .

Public methodStatic memberGetJoyAxis

Returns the current value of the joypad axis at given index (see JoystickList).

Public methodStatic memberGetJoyAxisIndexFromString

Returns the index of the provided axis name.

Public methodStatic memberGetJoyAxisString

Receives a JoystickList axis and returns its equivalent name as a string.

Public methodStatic memberGetJoyButtonIndexFromString

Returns the index of the provided button name.

Public methodStatic memberGetJoyButtonString

Receives a gamepad button from JoystickList and returns its equivalent name as a string.

Public methodStatic memberGetJoyGuid

Returns a SDL2-compatible device GUID on platforms that use gamepad remapping. Returns "Default Gamepad" otherwise.

Public methodStatic memberGetJoyName

Returns the name of the joypad at the specified device index.

Public methodStatic memberGetJoyVibrationDuration

Returns the duration of the current vibration effect in seconds.

Public methodStatic memberGetJoyVibrationStrength

Returns the strength of the joypad vibration: x is the strength of the weak motor, and y is the strength of the strong motor.

Public methodStatic memberGetLastMouseSpeed

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.

Public methodStatic memberGetMagnetometer

Returns the magnetic field strength in micro-Tesla for all axes of the device's magnetometer sensor, if the device has one. Otherwise, the method returns .

Note: This method only works on Android, iOS and UWP. On other platforms, it always returns .

Public methodStatic memberGetMouseButtonMask

Returns mouse buttons as a bitmask. If multiple mouse buttons are pressed at the same time, the bits are added together.

Public methodStatic memberGetMouseMode

Returns the mouse mode. See the constants for more information.

Public methodStatic memberIsActionJustPressed

Returns true when the user starts pressing the action event, meaning it's true 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.

Public methodStatic memberIsActionJustReleased

Returns true when the user stops pressing the action event, meaning it's true only on the frame that the user released the button.

Public methodStatic memberIsActionPressed

Returns true if you are pressing the action event. Note that if an action has multiple buttons assigned 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.

Public methodStatic memberIsJoyButtonPressed

Returns true if you are pressing the joypad button (see JoystickList).

Public methodStatic memberIsJoyKnown

Returns true if the system knows the specified device. This means that it sets all button and axis indices exactly as defined in JoystickList. Unknown joypads are not expected to match these constants, but you can still retrieve events from them.

Public methodStatic memberIsKeyPressed

Returns true if you are pressing the key. You can pass a KeyList constant.

Public methodStatic memberIsMouseButtonPressed

Returns true if you are pressing the mouse button specified with ButtonList.

Public methodStatic memberJoyConnectionChanged

Notifies the Input singleton that a connection has changed, to update the state for the device index.

This is used internally and should not have to be called from user scripts. See joy_connection_changed for the signal emitted when this is triggered internally.

Public methodStatic memberParseInputEvent

Feeds an InputEvent to the game. Can be used to artificially trigger input events from code. Also generates _Input(InputEvent) calls.

Example:

var a = InputEventAction.new()
a.action = "ui_cancel"
a.pressed = true
Input.parse_input_event(a)

Public methodStatic memberRemoveJoyMapping

Removes all mappings from the internal database that match the given GUID.

Public methodStatic memberSetCustomMouseCursor

Sets a custom mouse cursor image, which is only visible inside the game window. The hotspot can also be specified. Passing null to the image parameter resets to the system cursor. See InputCursorShape for the list of shapes.

image's size must be lower than 256×256.

hotspot must be within image's size.

Note: AnimatedTextures aren't supported as custom mouse cursors. If using an AnimatedTexture, only the first frame will be displayed.

Note: Only images imported with the Lossless, Lossy or Uncompressed compression modes are supported. The Video RAM compression mode can't be used for custom cursors.

Public methodStatic memberSetDefaultCursorShape

Sets the default cursor shape to be used in the viewport instead of .

Note: If you want to change the default cursor shape for Control's nodes, use MouseDefaultCursorShape instead.

Note: This method generates an InputEventMouseMotion to update cursor immediately.

Public methodStatic memberSetMouseMode

Sets the mouse mode. See the constants for more information.

Public methodStatic memberSetUseAccumulatedInput

Enables or disables the accumulation of similar input events sent by the operating system. When input accumulation is enabled, all input events generated during a frame will be merged and emitted when the frame is done rendering. Therefore, this limits the number of input method calls per second to the rendering FPS.

Input accumulation is enabled by default. It can be disabled to get slightly more precise/reactive input at the cost of increased CPU usage. In applications where drawing freehand lines is required, input accumulation should generally be disabled while the user is drawing the line to get results that closely follow the actual input.

Public methodStatic memberStartJoyVibration

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: 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.

Public methodStatic memberStopJoyVibration

Stops the vibration of the joypad.

Public methodStatic memberVibrateHandheld

Vibrate Android and iOS devices.

Note: It needs VIBRATE permission for Android at export settings. iOS does not support duration.

Public methodStatic memberWarpMousePosition

Sets the mouse position to the specified vector.

Top
See Also