(解決済み)エネミー選択時のヘルプウィンドウを消したい。

返信する
杏仁豆腐
記事: 38
登録日時: 2020年5月28日(木) 00:22

(解決済み)エネミー選択時のヘルプウィンドウを消したい。

投稿記事 by 杏仁豆腐 »

スクリーンショット .png
上記の画像の上部のヘルプウィンドウ(敵単体に対して)をエネミー選択時限定で表示されないようにしたいです。
MVの時代はそのような仕様だったと思うのですが、同じ仕様に出来ませんでしょうか。
どうしても諦めきれずリクエストさせて頂きました。
最後に編集したユーザー 杏仁豆腐 [ 2024年7月16日(火) 19:35 ], 累計 1 回
ecf5DTTzl6h6lJj02
記事: 715
登録日時: 2018年12月23日(日) 13:55

Re: エネミー選択時のヘルプウィンドウを消したい。

投稿記事 by ecf5DTTzl6h6lJj02 »

こんにちは。
杏仁豆腐 さんが書きました: 画像

上記の画像の上部のヘルプウィンドウ(敵単体に対して)をエネミー選択時限定で表示されないようにしたいです。
MVの時代はそのような仕様だったと思うのですが、同じ仕様に出来ませんでしょうか。
どうしても諦めきれずリクエストさせて頂きました。

コード: 全て選択

/*:
 * @target MZ
 */

(() => {
    'use strict';

    const _Scene_Battle_startActorSelection = Scene_Battle.prototype.startActorSelection;
    Scene_Battle.prototype.startActorSelection = function() {
        this._helpWindow.hide();
        _Scene_Battle_startActorSelection.apply(this, arguments);
    };

    const _Scene_Battle_startEnemySelection = Scene_Battle.prototype.startEnemySelection;
    Scene_Battle.prototype.startEnemySelection = function() {
        this._helpWindow.hide();
        _Scene_Battle_startEnemySelection.apply(this, arguments);
    };    
})();
上記コードをプラグインとして保存し、導入してみてください。
杏仁豆腐
記事: 38
登録日時: 2020年5月28日(木) 00:22

Re: エネミー選択時のヘルプウィンドウを消したい。

投稿記事 by 杏仁豆腐 »

ecf5DTTzl6h6lJj02 さんが書きました:こんにちは。
杏仁豆腐 さんが書きました: 画像

上記の画像の上部のヘルプウィンドウ(敵単体に対して)をエネミー選択時限定で表示されないようにしたいです。
MVの時代はそのような仕様だったと思うのですが、同じ仕様に出来ませんでしょうか。
どうしても諦めきれずリクエストさせて頂きました。

コード: 全て選択

/*:
 * @target MZ
 */

(() => {
    'use strict';

    const _Scene_Battle_startActorSelection = Scene_Battle.prototype.startActorSelection;
    Scene_Battle.prototype.startActorSelection = function() {
        this._helpWindow.hide();
        _Scene_Battle_startActorSelection.apply(this, arguments);
    };

    const _Scene_Battle_startEnemySelection = Scene_Battle.prototype.startEnemySelection;
    Scene_Battle.prototype.startEnemySelection = function() {
        this._helpWindow.hide();
        _Scene_Battle_startEnemySelection.apply(this, arguments);
    };    
})();
上記コードをプラグインとして保存し、導入してみてください。

ありがとうございます!!!!
理想の挙動となりました!!!
数年以来に実現したのが嬉しすぎます!!!
返信する

“MZ:プラグイン素材のリクエスト”に戻る