赞 | 159 |
VIP | 0 |
好人卡 | 0 |
积分 | 263 |
经验 | 0 |
最后登录 | 2024-11-18 |
在线时间 | 5356 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 26279
- 在线时间
- 5356 小时
- 注册时间
- 2016-3-8
- 帖子
- 1655
|
本帖最后由 alexncf125 于 2021-4-24 15:40 编辑
大概像这样子吧...
Window_Selectable.prototype.processOk = function() {
if (this.isCurrentItemEnabled()) {
if (this.currentData()) {
if (this.currentData().symbol === 'item') {
AudioManager.playSe({"name":"ABC","volume":100,"pitch":100,"pan":0})
} else if (this.currentData().symbol === 'skill') {
AudioManager.playSe({"name":"DEF","volume":100,"pitch":100,"pan":0})
}
}
this.updateInputData();
this.deactivate();
this.callOkHandler();
} else {
this.playBuzzerSound();
}
}; |
评分
-
查看全部评分
|