跳过标题界面
这一部分是启动游戏时的一部分代码。
Scene_Boot.prototype.startNormalGame = function() {
this.checkPlayerLocation();
DataManager.setupNewGame();
SceneManager.goto(Scene_Title);
Window_TitleCommand.initCommandPosition();
};
改成以下内容:
Scene_Boot.prototype.startNormalGame = function() {
this.checkPlayerLocation()
DataManager.setupNewGame()
SceneManager.goto(Scene_Map)
}
可以理解成,将开始游戏时【goto到Title】改成【goto到初始地图】
{:24:}原来几行代码就好了啊
我还用的插件
页:
[1]