Skip to content

Instantly share code, notes, and snippets.

@TannerRogalsky
Created January 24, 2015 01:49
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save TannerRogalsky/cfc7dff0d340edb5fdd1 to your computer and use it in GitHub Desktop.
Action Tracking Format
-- all timings in bpm
return {
file: 'sounds/music.mp3',
bpm: 100,
players: 2,
actions: [
{
player: 1,
start_time: 1,
hold_time: 1,
rest_time: 0,
gamepadaxis: Stick.UP,
},
{
player: 1,
start_time: 12,
hold_time: 2,
rest_time: 2,
gamepadbutton: Button.B,
},
{
player: 1,
start_time: 26,
hold_time: 0,
rest_time: 0,
gamepadbutton: Button.None,
gamepadaxis: Stick.None
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment