赞 | 677 |
VIP | 62 |
好人卡 | 144 |
积分 | 337 |
经验 | 110435 |
最后登录 | 2024-11-1 |
在线时间 | 5108 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 33668
- 在线时间
- 5108 小时
- 注册时间
- 2012-11-19
- 帖子
- 4878
|
这样?
- /*:
- * @plugindesc Skip the title scene for testing purpose.
- * @version 1.0
- */
- (function() {
- Scene_Boot.prototype.start = function() {
- Scene_Base.prototype.start.call(this);
- SoundManager.preloadImportantSounds();
- if (DataManager.isBattleTest()) {
- DataManager.setupBattleTest();
- SceneManager.goto(Scene_Battle);
- } else {
- this.checkPlayerLocation();
- DataManager.setupNewGame();
- SceneManager.goto(DataManager.isAnySavefileExists() ? Scene_Title : Scene_Map);
- }
- this.updateDocumentTitle();
- };
- })();
复制代码 |
|