赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 14 |
经验 | 1865 |
最后登录 | 2023-12-31 |
在线时间 | 177 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1366
- 在线时间
- 177 小时
- 注册时间
- 2017-6-28
- 帖子
- 48
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 loveings 于 2019-6-5 00:49 编辑
var old_Game_Event_initialize = Game_Event.prototype.initialize;
Game_Event.prototype.initialize = function(mapId, eventId) {
old_Game_Event_initialize.call(this, mapId, eventId);
var data_e = $dataMap.events[eventId];
/*this.is_origin = (MVC.getProp(data_e.meta, 'fow_origin')) ? true : false;*/
this.is_origin = this.searchComment('fow_origin') ? true : this.is_origin;
/*this.is_target = (MVC.getProp(data_e.meta, 'fow_target')) ? true : false;*/
this.is_target = this.searchComment('fow_target') ? true : this.is_target;
/*if (MVC.getProp(data_e.meta, 'fow_blocker') != undefined)
this.blocker_type = parseInt(MVC.getProp(data_e.meta, 'fow_blocker'));
else
this.blocker_type = 0;*/
if (this.searchComment('fow_blocker'))
this.blocker_type = parseInt(this.searchComment('fow_blocker'));
}
請問有人上面這段js的作用是什麼?用了一個戰爭迷霧插件,跑到這裡就出錯了,錯誤是cannot read property "meta" of null,就是那些meta的語句,
上面是我注釋掉meta的句段就不報錯,不過插件的視角變了三角,請問能這麼解決? |
|