You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
fix joystick axis handling for Input.is_action_pressed()
This commit is contained in:
@@ -102,6 +102,18 @@ bool InputDefault::is_action_pressed(const StringName& p_action) {
|
||||
if (joy_buttons_pressed.has(c))
|
||||
return true;
|
||||
} break;
|
||||
case InputEvent::JOYSTICK_MOTION: {
|
||||
|
||||
const InputEventJoystickMotion &iejm=E->get().joy_motion;
|
||||
int c = _combine_device(iejm.axis,device);
|
||||
if (_joy_axis.has(c)) {
|
||||
if (iejm.axis_value < 0) {
|
||||
if (_joy_axis[c] < -0.5f) return true;
|
||||
}
|
||||
else
|
||||
if (_joy_axis[c] > 0.5f) return true;
|
||||
}
|
||||
} break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user