赞 | 2 |
VIP | 50 |
好人卡 | 23 |
积分 | 1 |
经验 | 15845 |
最后登录 | 2018-11-11 |
在线时间 | 306 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 60
- 在线时间
- 306 小时
- 注册时间
- 2014-8-5
- 帖子
- 416
|
只提供一份思路。- (function(){
- var setMyCommandHandler=Scene_Title.prototype.createCommandWindow;
- Scene_Title.prototype.createCommandWindow=function()
- {
- setMyCommandHandler.call(this);
- this._commandWindow.setHandler('gameExit', this.commandGameExit.bind(this));
- };
- Scene_Title.prototype.commandGameExit=function()
- {
- this.fadeOutAll();
- SceneManager.exit();
- };
- var addMyCommand= Window_TitleCommand.prototype.makeCommandList;
- Window_TitleCommand.prototype.makeCommandList=function()
- {
- addMyCommand.call(this);
- this.addCommand("Game End", 'gameExit');
- };
- })();
复制代码 |
|