summaryrefslogtreecommitdiff
path: root/scripts/loadSaveQuit.lua
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2023-05-09 14:46:08 -0500
committersanine-a <sanine.not@pm.me>2023-05-09 14:46:08 -0500
commit9c9690ab5e4ecb484ee130c21f1767785908bd10 (patch)
tree847d7868a25936b1e632caac2b581b2c90d0eee0 /scripts/loadSaveQuit.lua
parentfe6564d8c31662d4d2c2606c62ba6d4416c6b6a6 (diff)
fix texture loading
Diffstat (limited to 'scripts/loadSaveQuit.lua')
-rw-r--r--scripts/loadSaveQuit.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/loadSaveQuit.lua b/scripts/loadSaveQuit.lua
new file mode 100644
index 0000000..8d5f353
--- /dev/null
+++ b/scripts/loadSaveQuit.lua
@@ -0,0 +1,13 @@
+local glfw = honey.glfw
+
+return function(entities, id, data)
+ if data.action == glfw.PRESS then
+ if data.key == glfw.KEY_ESCAPE then
+ data.window:setShouldClose(true)
+ elseif data.key == glfw.KEY_SPACE then
+ entities:save("save")
+ elseif data.key == glfw.KEY_L then
+ entities:load("save")
+ end
+ end
+end