epervier-old/examples/scenes/gameplay/moveplayer3D/actors/wall.lua

11 lines
268 B
Lua
Raw Normal View History

2020-04-05 18:18:13 +02:00
local Base = require "birb.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
return Wall