summaryrefslogtreecommitdiff
path: root/demo/Node.lua
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2020-12-04 22:23:58 -0600
committersanine-a <sanine.not@pm.me>2020-12-04 22:23:58 -0600
commitbbebc8d2582f639ecac1c4551411949eeacfc7ee (patch)
treef5f42324812c32b2cc18342087d2432e46800f6e /demo/Node.lua
parentc5fd6a98d29c8790c266da2c6b6db2ab173c3064 (diff)
remove annoying debug messages
Diffstat (limited to 'demo/Node.lua')
-rw-r--r--demo/Node.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/demo/Node.lua b/demo/Node.lua
index bfbfddd..7bd1ad5 100644
--- a/demo/Node.lua
+++ b/demo/Node.lua
@@ -51,7 +51,6 @@ local rotationAxes = { x=0, y=1, z=2 }
function Node.prototype.rotate(self, axis, angle)
local index = rotationAxes[axis]
- print(index)
local oldAngle = self.rotation:get(index)
self.rotation:set(index, oldAngle + angle)
end