Brick_LuaLogic/bricks/special/EventGate-update.lua
Auios 500eff70a9 Added EventGate
Added EventGate which is designed for logic signals to interface with events
2019-04-16 22:59:11 -04:00

4 lines
113 B
Lua

return function(gate)
gate.ports[2]:setstate(gate.ports[1].state)
gate:cb(bool_to_int[gate.ports[1].state])
end