summaryrefslogtreecommitdiff
path: root/demo
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2020-12-15 21:16:10 -0600
committersanine-a <sanine.not@pm.me>2020-12-15 21:16:10 -0600
commit2263acad65be7c881e81f2dc845d4acaefb9603e (patch)
treeab17f388a8743b7440bd14e99507859bbad6dc34 /demo
parent71dc88f9379f379ee0287b1ef2b62c57c6445099 (diff)
remove spurious debug message
Diffstat (limited to 'demo')
-rw-r--r--demo/main.lua12
1 files changed, 9 insertions, 3 deletions
diff --git a/demo/main.lua b/demo/main.lua
index 34f9e6f..75b9966 100644
--- a/demo/main.lua
+++ b/demo/main.lua
@@ -9,9 +9,15 @@ FPSCamera.movement_speed = 5
honey.input.key.bind(honey.input.key.escape, honey.exit)
local buffer = false
-honey.input.key.bind(honey.input.key.f, function(action) if action == 1 then buffer = not buffer end end)
-
- local tex = honey.texture.load('lowres.png', {minFilter='nearest', magFilter='nearest'})
+honey.input.key.bind(honey.input.key.f,
+ function(action)
+ if action == 1 then
+ buffer = not buffer
+ end
+end)
+
+local tex = honey.texture.load('lowres.png',
+ {minFilter='nearest', magFilter='nearest'})
local sceneRoot = Node.new()