赞 | 39 |
VIP | 0 |
好人卡 | 0 |
积分 | 35 |
经验 | 0 |
最后登录 | 2024-10-30 |
在线时间 | 293 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 3476
- 在线时间
- 293 小时
- 注册时间
- 2020-1-27
- 帖子
- 190
|
this 不会自动往下传的.
调用的时候得 : monstermove.bind(this)();
this才会跟着走.
或者直接拿当前运行事件的 evid: (但不包括并行运行那些.
function getEvid() {
if (typeof $gameMap === "undefined" && $gameTroop === "undefined") {
return 0;
}
var target = $gameMap
if ($gameTroop && $gameTroop._inBattle) {
target = $gameTroop
}
if (target._interpreter === undefined) {
return 0;
}
if (target._interpreter._list === undefined) {
return 0;
}
if (!target._interpreter._list) {
return 0;
}
if (target._interpreter._list.constructor.name !== "Array") {
return 0;
}
return target._interpreter._eventId;
}
事件需要递归到子事件.我没写递归. 你自己搞. |
|