我在代码中捕获按钮:this.buttons.Sound.addListener("pressed", this.__sound, this);
并编写功能,但然后我按下按钮声音关闭/打开它们不起作用。
__sound: function(){
if (this.buttons.Sound.isEnabled()){
createjs.Sound.volume = 1;
} else {
createjs.Sound.volume = 0;
}
},
我在代码中捕获按钮:this.buttons.Sound.addListener("pressed", this.__sound, this);
并编写功能,但然后我按下按钮声音关闭/打开它们不起作用。
__sound: function(){
if (this.buttons.Sound.isEnabled()){
createjs.Sound.volume = 1;
} else {
createjs.Sound.volume = 0;
}
},