The Sound Detune Event.
This event is dispatched by both Web Audio and HTML5 Audio Sound objects when their detune value changes.
Listen to it from a Sound instance using Sound.on('detune', listener)
, i.e.:
var music = this.sound.add('key');
music.on('detune', listener);
music.play();
music.setDetune(200);
name | type | description |
---|---|---|
sound | Phaser.Sound.WebAudioSound | Phaser.Sound.HTML5AudioSound |
A reference to the Sound that emitted the event. |
detune | number |
The new detune value of the Sound. |