Created
November 23, 2011 09:13
-
-
Save etgryphon/1388244 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Yi = Stativus.createStatechart() | |
Yi.addState "StateA1", | |
globalConcurrentState:'default_states', | |
states: [ | |
name: "StateA1B1", | |
substatesAreConcurrent: true, | |
states: [ | |
name: "StateA1C1" | |
, | |
name: "StateA1C2" | |
] | |
, | |
name: "StateA1B2" | |
] | |
Yi.addState "StateA2", | |
globalConcurrentState:'modal_states', | |
states: [ | |
name: "StateA2B1", | |
substatesAreConcurrent: true, | |
states: [ | |
name: "StateA2C1" | |
, | |
name: "StateA2C2" | |
] | |
, | |
name: "StateA2B2" | |
] | |
Yi.initStates {'default_states': 'StateA1', 'modal_states': 'StateA2'} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment