古树旋律 发表于 2023-6-7 09:19:43

跳过标题界面


这一部分是启动游戏时的一部分代码。
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到初始地图】

民族精神 发表于 2023-6-7 11:27:36

{:24:}原来几行代码就好了啊
我还用的插件
页: [1]
查看完整版本: 跳过标题界面