这一部分是启动游戏时的一部分代码。
[JavaScript] 纯文本查看 复制代码 Scene_Boot.prototype.startNormalGame = function() {
this.checkPlayerLocation();
DataManager.setupNewGame();
SceneManager.goto(Scene_Title);
Window_TitleCommand.initCommandPosition();
};
改成以下内容:
[JavaScript] 纯文本查看 复制代码 Scene_Boot.prototype.startNormalGame = function() {
this.checkPlayerLocation()
DataManager.setupNewGame()
SceneManager.goto(Scene_Map)
}
可以理解成,将开始游戏时【goto到Title】改成【goto到初始地图】
|