/* * -------------------------------------------------- * MNKR_TMRingCommandPatchFormation.js * Ver.0.0.1 * Copyright (c) 2021 Munokura * This software is released under the MIT license. * http://opensource.org/licenses/mit-license.php * -------------------------------------------------- */ /*: @target MV @url https://raw.githubusercontent.com/munokura/MNKR-MV-plugins/master/MNKR_TMRingCommandPatchFormation.js @plugindesc Facilitates sorting display of TMRingCommand. @author munokura @license MIT License @help This is a patch plugin for TMRingCommand. It simplifies sorting and display of TMRingCommand. Place it below TMRingCommand in the Plugin Manager. Use GraphicalDesignMode.js to adjust the window position and size. https://triacontane.blogspot.com/2016/03/gui.html Terms of Use: MIT License. http://opensource.org/licenses/mit-license.php You may modify and redistribute this plugin without permission, and there are no restrictions on its use (commercial, 18+, etc.). */ /*:ja @target MV @url https://raw.githubusercontent.com/munokura/MNKR-MV-plugins/master/MNKR_TMRingCommandPatchFormation.js @plugindesc TMRingCommand の並べ替え表示を簡易にします。 @author munokura @help TMRingCommand のパッチプラグインです。 TMRingCommand の並べ替え表示を簡易にします。 プラグイン管理で TMRingCommand の下側に配置してください。 ウィンドウの位置と大きさの調整は GraphicalDesignMode.js を使用してください。 https://triacontane.blogspot.com/2016/03/gui.html 利用規約: MITライセンスです。 http://opensource.org/licenses/mit-license.php 作者に無断で改変、再配布が可能で、 利用形態(商用、18禁利用等)についても制限はありません。 */ (() => { "use strict"; const _Window_Base_drawActorSimpleStatus = Window_Base.prototype.drawActorSimpleStatus; Window_Base.prototype.drawActorSimpleStatus = function (actor, x, y, width) { const isScene = SceneManager._scene.constructor.name === 'Scene_RCFormation'; if (isScene) { this.drawActorName(actor, x, y); } else { _Window_Base_drawActorSimpleStatus.call(this, actor, x, y, width); } }; })();