From bbebc8d2582f639ecac1c4551411949eeacfc7ee Mon Sep 17 00:00:00 2001 From: sanine-a Date: Fri, 4 Dec 2020 22:23:58 -0600 Subject: remove annoying debug messages --- demo/Camera.lua | 1 - demo/Node.lua | 1 - demo/main.lua | 1 - 3 files changed, 3 deletions(-) (limited to 'demo') 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 -- cgit v1.2.1