Skip to content

Instantly share code, notes, and snippets.

@jtothebell
Created September 22, 2014 16:07
Show Gist options
  • Save jtothebell/0522658059c6585392d7 to your computer and use it in GitHub Desktop.
Save jtothebell/0522658059c6585392d7 to your computer and use it in GitHub Desktop.
private void SoundCheckButton_Pressed(object sender, PressEventArgs e)
{
_buttons[_currentSound].StopFlashing();
_buttons[_currentSound].Highlight();
AudioManager.InterruptAudio();
DisableUserInput();
StateManager.GoToInteraction(10);
}
private void _letsGo_Stopped(object sender, AudioEventArgs e)
{
NavBar.StopFlashing(NavBarButton.LetsGo);
}
private void _letsGo_Started(object sender, AudioEventArgs e)
{
NavBar.StartFlashing(NavBarButton.LetsGo);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment