1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
local Node = require('Node')
local MeshInstance = {}
MeshInstance.prototype = {}
setmetatable(MeshInstance.prototype, { __index = Node.prototype})
MeshInstance.prototype.draw = function(self, shader, camera)
honey.shader.set_mat4(shader, 'model', self.transform.array)
honey.shader.set_mat4(shader, 'view', camera.view.array)
honey.shader.set_mat4(shader, 'projection', camera.projection.array)
honey.mesh.draw(self.mesh, shader)
end
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
MeshInstance.mt = {}
MeshInstance.mt.__index = MeshInstance.prototype
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
MeshInstance.new = function(parent, position, rotation, scale, mesh)
local meshinstance = Node.new(parent, position, rotation, scale)
setmetatable(meshinstance, MeshInstance.mt)
meshinstance.mesh = mesh
return meshinstance
end
return MeshInstance
|