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 | |
parent | c5fd6a98d29c8790c266da2c6b6db2ab173c3064 (diff) |
remove annoying debug messages
Diffstat (limited to 'demo')
-rw-r--r-- | demo/Camera.lua | 1 | ||||
-rw-r--r-- | demo/Node.lua | 1 | ||||
-rw-r--r-- | demo/main.lua | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/demo/Camera.lua b/demo/Camera.lua index 4f5c1fe..7abef16 100644 --- a/demo/Camera.lua +++ b/demo/Camera.lua @@ -30,4 +30,3 @@ Camera.new = function(parent, position, rotation, scale, fov, aspect, near, far) end return Camera - 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 diff --git a/demo/main.lua b/demo/main.lua index d0695a6..231af10 100644 --- a/demo/main.lua +++ b/demo/main.lua @@ -42,7 +42,6 @@ local plane2 = MeshInstance.new(suzanne, suzanne.update = function(self, dt) self:rotate('y', 10*dt) - print(self.rotation) end local total_frames = 0 |