lua-fsm icon indicating copy to clipboard operation
lua-fsm copied to clipboard

A simple finite-state machine implementation for Lua.

Results 3 lua-fsm issues
Sort by recently updated
recently updated
newest added

I don't know if you're still maintaining this, but I have found this addition useful. It does not change any existing defined behaviour, and it adds (what I think is)...

Fixes https://github.com/unindented/lua-fsm/issues/3. Includes test and one-line fix.

Tried this out because it looked cool. Used the following code: ```lua local fsm = require "fsm" local gamestate = fsm.create({ initial = "loading", events = { { name =...