1

我在代码中捕获按钮:this.buttons.Sound.addListener("pressed", this.__sound, this);

并编写功能,但然后我按下按钮声音关闭/打开它们不起作用。

__sound: function(){
  if (this.buttons.Sound.isEnabled()){
     createjs.Sound.volume = 1;
   } else {
     createjs.Sound.volume = 0;
   }
},
4

1 回答 1

0

在这一切工作之后

__sound: function(){

if (this.buttons.Sound.isEnabled()){
createjs.Sound.setVolume(1);
} else {
createjs.Sound.setVolume(0);
}
},
于 2015-07-02T15:00:06.893 回答