Skip to content

Instantly share code, notes, and snippets.

@rsimmons
Created September 17, 2018 20:21
Show Gist options
  • Save rsimmons/d09d3bd3643f09b5ca2277d495b03022 to your computer and use it in GitHub Desktop.
Save rsimmons/d09d3bd3643f09b5ca2277d495b03022 to your computer and use it in GitHub Desktop.
{
"initialState": "intro",
"states": {
"intro": {
"fgsound": "intro",
"bgsound": "loop1",
"transitions": {
"fgend": "prompt_curious",
}
},
"prompt_curious": {
"fgsound": ["curious", "pause", "how_to_answer"],
"transitions": {
"fgend": "prompt_curious",
"positive": "outro",
"negative": "not_curious",
}
},
"not_curious": {
"fgsound": "not_curious",
"bgsound": "loop2",
"transitions": {
"fgend": "halt",
}
},
"outro": {
"fgsound": "outro",
"bgsound": "loop2",
"transitions": {
"fgend": "halt",
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment