Functions for keyboard and gamepad input detection.
mouseClicked(button:String = 'left'):Bool
Returns whether the Mouse button just got clicked in this frame.
mousePressed(button:String = 'left'):Bool
Returns whether the Mouse button is being held currently.
mouseReleased(button:String = 'left'):Bool
Returns whether the Mouse button was just released in this frame.
getMouseX(camera:String = 'game'):Float
Returns Mouse's Screen X from a Camera.
getMouseY(camera:String = 'game'):Float
Returns Mouse's Screen Y from a Camera.
keyJustPressed(button:String):Bool
Returns whether a keybind button just got pressed on a controller or keyboard.
keyPressed(button:String):Bool
Returns whether a keybind button is being held on a controller or keyboard.
keyReleased(button:String):Bool
Returns whether a keybind button was just released on a controller or keyboard.
keyboardJustPressed(button:String):Bool
Returns whether a specific keyboard button just got pressed.
keyboardPressed(button:String):Bool
Returns whether a specific keyboard button is being pressed.
keyboardReleased(button:String):Bool
Returns whether a specific keyboard button was just released.
anyGamepadJustPressed(button:String):Bool
Returns whether a specific gamepad button just got pressed in any controllers.
anyGamepadPressed(button:String):Bool
Returns whether a specific gamepad button is being pressed in any controllers.
anyGamepadReleased(button:String):Bool
Returns whether a specific gamepad button was just released in any controllers.
gamepadJustPressed(id:Int, button:String):Bool
Returns whether a specific gamepad button just got pressed in a specific controller.
gamepadPressed(id:Int, button:String):Bool
Returns whether a specific gamepad button is being pressed in a specific controller.
gamepadReleased(id:Int, button:String):Bool
Returns whether a specific gamepad button was just released in a specific controller.
gamepadAnalogX(id:Int, ?leftStick:Bool = true):Float
Returns the Analog X value in a specific controller, ranges from -1 to 1.
gamepadAnalogY(id:Int, ?leftStick:Bool = true):Float
Returns the Analog Y value in a specific controller, ranges from -1 to 1.