Skip to content

Instantly share code, notes, and snippets.

@zxqx
Created December 8, 2014 17:33
Show Gist options
  • Save zxqx/7a45f3a6a3792b45b927 to your computer and use it in GitHub Desktop.
Save zxqx/7a45f3a6a3792b45b927 to your computer and use it in GitHub Desktop.
/**
* @param {GainNode} gainAmount
*/
_turnMusicUp(gainAmount)
{
var music = this.sound.getCurrentMusic();
var currentGain = this.sound.getGainValue(music);
this.sound.fadeIn(music, 1000, currentGain, gainAmount);
}
_duckAndLowerMusic()
{
var music = this.sound.getCurrentMusic();
this.sound
.fadeOut(music, 500, 1, 0.5)
.callback(() =>
this.sound.fadeIn(music, 1000, 0.5, 0.75)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment