summaryrefslogtreecommitdiff
path: root/editor/editor_settings.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-10-01 11:42:41 +0200
committerGitHub <noreply@github.com>2021-10-01 11:42:41 +0200
commit769691ab53f46763582a46df8c4583f9ba1a944f (patch)
tree3f86a8c9a3f4352be2a916170a9110cb12a66123 /editor/editor_settings.h
parent6ed3e9c182627385bf7e249bf770e845d0b949d8 (diff)
parentad30b0a8dd793efa2ca60b424f3dc1e25975de68 (diff)
Merge pull request #51273 from EricEzaM/multiple-events-per-shortcut-take2
Diffstat (limited to 'editor/editor_settings.h')
-rw-r--r--editor/editor_settings.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_settings.h b/editor/editor_settings.h
index 9067539e29..04e227bc5c 100644
--- a/editor/editor_settings.h
+++ b/editor/editor_settings.h
@@ -201,7 +201,9 @@ Variant _EDITOR_GET(const String &p_setting);
#define ED_IS_SHORTCUT(p_name, p_ev) (EditorSettings::get_singleton()->is_shortcut(p_name, p_ev))
Ref<Shortcut> ED_SHORTCUT(const String &p_path, const String &p_name, Key p_keycode = KEY_NONE);
+Ref<Shortcut> ED_SHORTCUT_ARRAY(const String &p_path, const String &p_name, const PackedInt32Array &p_keycodes);
void ED_SHORTCUT_OVERRIDE(const String &p_path, const String &p_feature, Key p_keycode = KEY_NONE);
+void ED_SHORTCUT_OVERRIDE_ARRAY(const String &p_path, const String &p_feature, const PackedInt32Array &p_keycodes);
Ref<Shortcut> ED_GET_SHORTCUT(const String &p_path);
#endif // EDITOR_SETTINGS_H