Initial commit

This commit is contained in:
Eagle517
2019-01-15 12:39:35 -06:00
commit 9ae8714055
153 changed files with 29967 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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("1\t" .. printname)
end
end