2019-07-26 19:39:32 +02:00
|
|
|
local Base = require "core.modules.world.actors.actor3D"
|
|
|
|
local Wall = Base:extend()
|
|
|
|
|
|
|
|
function Wall:new(world, x, y, z, w, h, d)
|
|
|
|
Wall.super.new(self, world, "wall", x, y, z, w, h, d, true)
|
|
|
|
self:setDebugColor(0,0,0)
|
|
|
|
self.boxes.Base(self, w, h, d)
|
|
|
|
end
|
|
|
|
|
2019-07-27 11:34:23 +02:00
|
|
|
function Wall:update(dt)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2019-07-26 19:39:32 +02:00
|
|
|
return Wall
|