2021-05-05 08:30:32 +02:00
|
|
|
local Base = require "birb.modules.world.actors.actor3D"
|
2019-07-27 15:10:50 +02:00
|
|
|
local Textured = Base:extend()
|
|
|
|
|
|
|
|
function Textured:new(world, x, y, z, w, h, d, top, bottom)
|
|
|
|
Textured.super.new(self, world, "wall", x, y, z, w, h, d, true)
|
|
|
|
self:setDebugColor(0,0,0)
|
|
|
|
self.boxes.Textured(self, w, h, d, top, bottom)
|
|
|
|
end
|
|
|
|
|
|
|
|
function Textured:update(dt)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return Textured
|