RPGMZ插件-跳过标题界面

/*:
 * @plugindesc 跳过标题
 * @author yx_
 * 
 * 
 * @help
 * v1.0.0
 * 跳过游戏标题
 * 
 */

(function(){
    Scene_Title.prototype.start = function() {
         Scene_Base.prototype.start.call(this);
        // DataManager.setupNewGame();
        // this._commandWindow.close();
        // this.fadeOutAll();
        SceneManager.goto(Scene_Map);
    };

})();

 

posted @ 2021-01-21 21:01  yx_亦心  阅读(323)  评论(0编辑  收藏  举报