sonic-radiance/sonic-radiance.love/game/modules/world/actors/collisions/invisible.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

14 lines
291 B
Lua

local Base = require "core.modules.world.actors.actor3D"
local Invisible = Base:extend()
function Invisible:new(world, x, y, z, w, h, d)
Invisible.super.new(self, world, "wall", x, y, z, w, h, d, true)
self:setDebugColor(0,0,0)
end
function Invisible:update(dt)
end
return Invisible