mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
Setting loop value at the end of applyConfig method
This commit is contained in:
parent
0e5b2594c5
commit
dca07e84fb
1 changed files with 1 additions and 1 deletions
|
@ -263,9 +263,9 @@ var BaseSound = new Class({
|
|||
applyConfig: function () {
|
||||
this.mute = this.currentConfig.mute;
|
||||
this.volume = this.currentConfig.volume;
|
||||
this.loop = this.currentConfig.loop;
|
||||
this.rate = this.currentConfig.rate;
|
||||
this.detune = this.currentConfig.detune;
|
||||
this.loop = this.currentConfig.loop;
|
||||
// TODO assign other config values to buffer source
|
||||
},
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue