❤❣ღ rpg maker mv收集 ❤❣ღ
㊕rpg maker mv新功能☪

〄数据库道具上限提升 ✿自动三层级地图
☪高分辨率游戏画面 触屏控制✿
____________________________________________
多设备支持:
输出Windows exe文件、Mac App文件、安卓Apk和iOS ipa✿
Mac、android、windows☪

即使你不用懂编程☪、不用会代码,依然能制作属于自己游戏✿
————————————————
转载于插件の素材の等资源,免费下载☪
✉开发: KADOKAWA ✿ Yoji Ojima
✉发行: Degica
 

跳过标题画面

跳过标题画面 

作者:taroxd


//=============================================================================

// SkipTitle.js

//=============================================================================


/*:

 * @plugindesc Skip Title.

 * @author taroxd

 *

 * @param Test Only

 * @desc Whether to skip title only in playtest. true/false

 * @default true

 *

 * @help This plugin does not provide plugin commands.

 */


void function() {


    var parameters = PluginManager.parameters('SkipTitle');

    var testOnly = parameters['Test Only'] !== 'false';

    var enable = !testOnly || Utils.isOptionValid('test');


    if (enable) {

        Scene_Boot.prototype.start = function() {

            Scene_Base.prototype.start.call(this);

            SoundManager.preloadImportantSounds();

            this.checkPlayerLocation();

            DataManager.setupNewGame();

            SceneManager.goto(Scene_Map);

        };

    }


}();


 
评论
 
热度(4)