赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 4676 |
最后登录 | 2017-8-6 |
在线时间 | 68 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 68 小时
- 注册时间
- 2014-7-8
- 帖子
- 50
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
- Game_Player.prototype.startMapEvent = function(x, y, triggers, normal) {
- if (!$gameMap.isEventRunning()) {
- $gameMap.eventsXy(x, y).forEach(function(event) {
- if (event.isTriggerIn(triggers) && event.isNormalPriority() === normal) {
- event.start();
- }
- });
- }
- };
复制代码
请问参数里的triggers和normal是指什么?要怎么填? |
|