added specific action keybinds to the editor

This commit is contained in:
lustlion
2022-03-06 16:33:45 +01:00
parent 05bf757ea5
commit 5c9fc39fad
2 changed files with 58 additions and 23 deletions

View File

@@ -112,10 +112,16 @@ function Keybind:default()
Keybind.debug.playback = { keys = {"f6"}}
-- Editor
Keybind.editor.palette = { keys = {"tab"}}
Keybind.editor.palette_mode = { keys = {"tab"}}
Keybind.editor.room_mode = { keys = {"r"}}
Keybind.editor.entity_mode = { keys = {"e"}}
Keybind.editor.properties_mode = { keys = {"p"}}
Keybind.editor.left = { keys = {"left", "a"}}
Keybind.editor.right = { keys = {"right", "d"}}
Keybind.editor.up = { keys = {"up", "w"}}
Keybind.editor.down = { keys = {"down", "s"}}
Keybind.editor.palette_change = { keys = {"f1"}}
Keybind.editor.save = { keys = {"f3"}}
-- Generic
Keybind.generic.lclick = { keys = {1}}