赞 | 55 |
VIP | 0 |
好人卡 | 0 |
积分 | 0 |
经验 | 0 |
最后登录 | 2024-9-11 |
在线时间 | 701 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 26
- 在线时间
- 701 小时
- 注册时间
- 2021-3-24
- 帖子
- 549
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
Game_Event.prototype.unlock = function() {
if (this._locked) {
debugger
this._locked = false;
this.setDirection(this._prelockDirection);
}
};
Game_Map.prototype.updateInterpreter = function() {
for (;;) {
this._interpreter.update();
if (this._interpreter.isRunning()) {
return;
}
if (this._interpreter.eventId() > 0) {
this.unlockEvent(this._interpreter.eventId());
this._interpreter.clear();
}
if (!this.setupStartingEvent()) {
return;
}
}
};
断到了两个方法
是我用自己的脚本触发事件,事件不会等待我自己的脚本执行完毕就进行下个事件。
症状是 事件的朝向会立即扭过去 ,断点调出来是有个事件类有个locked,但我没看见原生的消息框怎么控制这个东西,是跟事件编辑器有关么。
有没有懂哥说一下 |
|