Console commands
Posted: 25 Oct 2018, 19:48
Commands are defined using the meta tag that can be defined in any plugin. It will look like:
Writing mycommand into the console would execute the transition(s).
Code: Select all
"meta":{
"tags":{
"console":{
"commands":{
"mycommand":{
"condition":{...},
"actions":[...] // Just a normal fun transition object
}
}
}
}
}