// DarkPlasma_FormationInMenu 1.0.2 // Copyright (c) 2020 DarkPlasma // This software is released under the MIT license. // http://opensource.org/licenses/mit-license.php /** * 2021/07/05 1.0.2 MZ 1.3.2に対応 * 2021/06/22 1.0.1 サブフォルダからの読み込みに対応 * 2020/09/23 1.0.0 公開 */ /*: @target MZ @url https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree/release @plugindesc Change the menu order to a dedicated scene @author DarkPlasma @license MIT @help English Help Translator: munokura This is an unofficial English translation of the plugin help, created to support global RPG Maker users. Feedback is welcome to improve translation quality (see: https://github.com/munokura/DarkPlasma-MZ-Plugins ). Original plugin by DarkPlasma. Please check the latest official version at: https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree/release ----- version: 1.0.2 Replaces menu sorting with DarkPlasma_Formation's dedicated sorting scene. This plugin requires the following plugin: DarkPlasma_Formation */ /*:ja @plugindesc メニューの並び替えを専用シーンに変える @author DarkPlasma @license MIT @target MZ @url https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree/release @base DarkPlasma_Formation @help version: 1.0.2 メニューの並び替えを DarkPlasma_Formation の専用並び替えシーンにすり替えます。 本プラグインの利用には下記プラグインを必要とします。 DarkPlasma_Formation */ (() => { 'use strict'; Scene_Menu.prototype.commandFormation = function () { SceneManager.push(Scene_Formation); }; })();