Brick_LuaLogic/bricks/outputs/text-update.lua
2019-04-16 19:33:24 -05:00

14 lines
339 B
Lua

return function(gate)
if gate.ports[1]:isrising() then
gate.tickStarted = gate:gettick()
elseif gate.ports[1]:isfalling() then
local ticksOn = gate:gettick() - gate.tickStarted
local printid = ((ticksOn-1) % #textbrick_idxToPrint)
local printname = textbrick_idxToPrint[printid]
gate:cb(printname)
end
end