mirror of
https://github.com/godotengine/godot.git
synced 2024-11-14 16:13:08 +00:00
Merge pull request #20511 from maksloboda/InputEventActionFix
Fixed shortcuts not working with InputEventActions
This commit is contained in:
commit
e6aec27428
@ -949,6 +949,14 @@ bool InputEventAction::is_pressed() const {
|
||||
return pressed;
|
||||
}
|
||||
|
||||
bool InputEventAction::shortcut_match(const Ref<InputEvent> &p_event) const {
|
||||
Ref<InputEventKey> event = p_event;
|
||||
if (event.is_null())
|
||||
return false;
|
||||
|
||||
return event->is_action(action);
|
||||
}
|
||||
|
||||
bool InputEventAction::is_action(const StringName &p_action) const {
|
||||
|
||||
return action == p_action;
|
||||
|
@ -480,6 +480,7 @@ public:
|
||||
|
||||
virtual bool is_action(const StringName &p_action) const;
|
||||
|
||||
virtual bool shortcut_match(const Ref<InputEvent> &p_event) const;
|
||||
virtual bool is_action_type() const { return true; }
|
||||
virtual String as_text() const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user