summaryrefslogtreecommitdiff
path: root/demo/Camera.lua
diff options
context:
space:
mode:
Diffstat (limited to 'demo/Camera.lua')
-rw-r--r--demo/Camera.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/demo/Camera.lua b/demo/Camera.lua
index fda23f2..4f5c1fe 100644
--- a/demo/Camera.lua
+++ b/demo/Camera.lua
@@ -1,7 +1,9 @@
+local Node = require('Node')
+
local Camera = {}
Camera.prototype = {}
-setmetatable(Camera.prototype, { __index = honey.nodeMetatable.__index })
+setmetatable(Camera.prototype, { __index = Node.prototype })
Camera.prototype.updateView = function(self)
self.basis = self.transform:basis()
@@ -16,7 +18,7 @@ Camera.mt.__index = Camera.prototype
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Camera.new = function(parent, position, rotation, scale, fov, aspect, near, far)
- local camera = honey.node(parent, position, rotation, scale)
+ local camera = Node.new(parent, position, rotation, scale)
setmetatable(camera, Camera.mt)
camera.view = honey.glm.mat4()