| 
 
| 赞 | 7 |  
| VIP | 7 |  
| 好人卡 | 58 |  
| 积分 | 1 |  
| 经验 | 111901 |  
| 最后登录 | 2025-8-6 |  
| 在线时间 | 386 小时 |  
 Lv1.梦旅人 
	梦石0 星屑75 在线时间386 小时注册时间2007-7-27帖子4106 
 | 
| 切地图不淡入淡出和空轨战斗有什么关系 讲道理 空轨战斗切换不是屏幕裂成碎片然后碎片翻滚吗
 (不
 
 Scene_Map.prototype.start = function() {
 Scene_Base.prototype.start.call(this);
 SceneManager.clearStack();
 if (this._transfer) {
 this.fadeInForTransfer();
 this._mapNameWindow.open();
 $gameMap.autoplay();
 } else if (this.needsFadeIn()) {
 this.startFadeIn(this.fadeSpeed(), false);
 }
 this.menuCalling = false;
 };
 
 Scene_Map.prototype.stop = function() {
 Scene_Base.prototype.stop.call(this);
 $gamePlayer.straighten();
 this._mapNameWindow.close();
 if (this.needsSlowFadeOut()) {
 this.startFadeOut(this.slowFadeSpeed(), false);
 } else if (SceneManager.isNextScene(Scene_Map)) {
 this.fadeOutForTransfer();
 } else if (SceneManager.isNextScene(Scene_Battle)) {
 this.launchBattle();
 }
 };
 
 查了一下应该是这里控制,把this.fadeInForTransfer();和 this.fadeOutForTransfer();删了
 | 
 评分
查看全部评分
 |