本帖最后由 鑫晴 于 2017-7-2 08:24 编辑
在RMMV安装目录下的dlc里面可以找到这个插件,你可以把它复制到你自己游戏目录的\js\plugins文件夹里面,或者把它放进NewData\js\plugins里面,这样每次新建工程就自带了
- \steamapps\common\RPG Maker MV\dlc\RPGmakerWeb_plugins\Yami\Yami_SkipTitle.js
复制代码
Yami的跳过标题插件
/*: * @plugindesc Skip the title scene for testing purpose. * @version 1.0 */ /*:ja * @plugindesc テストプレイ用にタイトルシーンを飛ばすことができます。 * @version 1.0 */ (function() { Scene_Boot.prototype.start = function() { Scene_Base.prototype.start.call(this); SoundManager.preloadImportantSounds(); if (DataManager.isBattleTest()) { DataManager.setupBattleTest(); SceneManager.goto(Scene_Battle); } else { this.checkPlayerLocation(); DataManager.setupNewGame(); SceneManager.goto(Scene_Map); } this.updateDocumentTitle(); }; })();
/*:
* @plugindesc Skip the title scene for testing purpose.
* @version 1.0
*/
/*:ja
* @plugindesc テストプレイ用にタイトルシーンを飛ばすことができます。
* @version 1.0
*/
(function() {
Scene_Boot.prototype.start = function() {
Scene_Base.prototype.start.call(this);
SoundManager.preloadImportantSounds();
if (DataManager.isBattleTest()) {
DataManager.setupBattleTest();
SceneManager.goto(Scene_Battle);
} else {
this.checkPlayerLocation();
DataManager.setupNewGame();
SceneManager.goto(Scene_Map);
}
this.updateDocumentTitle();
};
})();
|