21 lines
699 B
JavaScript
21 lines
699 B
JavaScript
/*:
|
|
* @target MZ
|
|
* @plugindesc 戦闘中、ステータスウインドウ位置を固定する
|
|
* @author yuwaka
|
|
*
|
|
* @help
|
|
* 戦闘中、入力終了後にステータスウインドウが真ん中に移動しないようにします。
|
|
*
|
|
* プラグインコマンドはありません。
|
|
* RPGツクールMZ専用です。
|
|
* ツクールの規約に沿って自由に改変、使用してください。
|
|
*/
|
|
|
|
Scene_Battle.prototype.updateStatusWindowVisibility = function () {
|
|
if ($gameMessage.isBusy()) {
|
|
this._statusWindow.close();
|
|
} else if (this.shouldOpenStatusWindow()) {
|
|
this._statusWindow.open();
|
|
}
|
|
// this.updateStatusWindowPosition();
|
|
};
|