gpt4 book ai didi

javascript - Qooxdoo 声音按钮开/关不起作用

转载 作者:行者123 更新时间:2023-11-28 07:12:14 25 4
gpt4 key购买 nike

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

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

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

最佳答案

所有工作完成后

__sound: function(){

if (this.buttons.Sound.isEnabled()){
createjs.Sound.setVolume(1);
} else {
createjs.Sound.setVolume(0);
}
},

关于javascript - Qooxdoo 声音按钮开/关不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31186315/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com