diff options
author | sanine-a <sanine.not@pm.me> | 2020-12-04 22:23:58 -0600 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-12-04 22:23:58 -0600 |
commit | bbebc8d2582f639ecac1c4551411949eeacfc7ee (patch) | |
tree | f5f42324812c32b2cc18342087d2432e46800f6e /demo/Node.lua | |
parent | c5fd6a98d29c8790c266da2c6b6db2ab173c3064 (diff) |
remove annoying debug messages
Diffstat (limited to 'demo/Node.lua')
-rw-r--r-- | demo/Node.lua | 1 |
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 |