sonic-radiance/sonic-radiance.love/game/modules/world/actors/collisions/textured.lua
Kazhnuz 70ed18202d feat: backport code from bluestreak
It'll give us the following features
- Support for autorun in shoot-style maps
- Pause menu in subgames
- Chunk in shoot maps
- Rings
2020-08-16 10:52:00 +02:00

15 lines
349 B
Lua

local Base = require "core.modules.world.actors.actor3D"
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