summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cameraHandleResize.lua6
-rw-r--r--scripts/loadSaveQuit.lua13
-rw-r--r--scripts/viewportResize.lua3
3 files changed, 22 insertions, 0 deletions
diff --git a/scripts/cameraHandleResize.lua b/scripts/cameraHandleResize.lua
new file mode 100644
index 0000000..7d1713d
--- /dev/null
+++ b/scripts/cameraHandleResize.lua
@@ -0,0 +1,6 @@
+return function(entities, id, data)
+ local camera = entities:getComponent(id, "camera")
+ if camera then
+ camera.projection:perspectiveResize(data.width/data.height)
+ end
+end
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
diff --git a/scripts/viewportResize.lua b/scripts/viewportResize.lua
new file mode 100644
index 0000000..4b43d29
--- /dev/null
+++ b/scripts/viewportResize.lua
@@ -0,0 +1,3 @@
+return function(entities, id, data)
+ honey.gl.Viewport(0, 0, data.width, data.height)
+end