赞 | 11 |
VIP | 0 |
好人卡 | 0 |
积分 | 24 |
经验 | 0 |
最后登录 | 2022-9-20 |
在线时间 | 363 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 2389
- 在线时间
- 363 小时
- 注册时间
- 2021-2-8
- 帖子
- 149
|
这样就可以
Window_Options.prototype.addVolumeOptions = function() {
this.addCommand(TextManager.bgmVolume, 'bgmVolume');
this.addCommand(TextManager.bgsVolume, 'bgsVolume');
this.addCommand(TextManager.meVolume, 'meVolume');
this.addCommand(TextManager.seVolume, 'seVolume');
this.addCommand("取消", 'QX'); //取消
};
Window_Options.prototype.changeValue = function(symbol, value) {
var lastValue = this.getConfigValue(symbol);
if (lastValue !== value) {
this.setConfigValue(symbol, value);
this.redrawItem(this.findSymbol(symbol));
SoundManager.playCursor();
}
//追加
if (ConfigManager.QX) {
this.setConfigValue(symbol, !value);
SceneManager.pop();
}
}; |
|