summaryrefslogtreecommitdiff
path: root/editor/editor_command_palette.h
AgeCommit message (Collapse)Author
2022-01-03Update copyright statements to 2022RĂ©mi Verschelde
Happy new year to the wonderful Godot community!
2021-11-12Use "enum class" for input enumsAaron Franke
2021-08-31Sort palette commands by last usekobewi
2021-08-23Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz
* `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now.
2021-08-10Use Key enum instead of plain integersAaron Franke
2021-08-09Added EditorCommandPaletteBhuvan Vemula