tiny-ecs-love-template/systems/input.lua

13 lines
318 B
Lua

---@type ButtonState
local buttonState = {}
buttonInputSystem = filteredSystem("buttonInput", { canReceiveButtons = T.marker }, function(e, _, system)
e.buttonState = buttonState
system.world:addEntity(e)
end)
function buttonInputSystem:preProcess()
if #self.entities == 0 then
return
end
end