赞 | 6 |
VIP | 0 |
好人卡 | 5 |
积分 | 5 |
经验 | 13099 |
最后登录 | 2022-11-27 |
在线时间 | 271 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 470
- 在线时间
- 271 小时
- 注册时间
- 2011-10-17
- 帖子
- 99
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
起因是这样的,想用MV做安卓游戏,但是发现默认的系统菜单,用安卓操作起来太麻烦(菜单层级太多,点击的字又小)
于是就用了YEP_PictureCommonEvents插件,做了这样一个UI,可以点右上方的按钮直接进入存档、道具、技能、装备等界面
拿进入技能界面为例,我知道直接进入技能界面的脚本是SceneManager.push(Scene_Skill);
但这个脚本就是直接进入1号队友的技能了,而我不想进去这么快,想先经历一个选人的界面,如图所示
所以请问进入上图界面的脚本是什么?我能找到js文件中的脚本是这一段,但是这一个this接着一个this,实在不会改动啊
//创建命令窗口
Scene_Menu.prototype.createCommandWindow = function() {
this._commandWindow = new Window_MenuCommand(0, 0);
this._commandWindow.setHandler('item', this.commandItem.bind(this));
this._commandWindow.setHandler('skill', this.commandPersonal.bind(this));
this._commandWindow.setHandler('equip', this.commandPersonal.bind(this));
this._commandWindow.setHandler('status', this.commandPersonal.bind(this));
this._commandWindow.setHandler('formation', this.commandFormation.bind(this));
this._commandWindow.setHandler('options', this.commandOptions.bind(this));
this._commandWindow.setHandler('save', this.commandSave.bind(this));
this._commandWindow.setHandler('gameEnd', this.commandGameEnd.bind(this));
this._commandWindow.setHandler('cancel', this.popScene.bind(this));
this.addWindow(this._commandWindow);
}; |
|