各シーンに追加で任意のウィンドウを表示 - ExtraWindow.js
シェア用テキスト:
▼各シーンに追加で任意のウィンドウを表示(トリアコンタン様作) - ExtraWindow.js
https://plugin-mz.fungamemake.com/archives/362
任意のウィンドウを指定したシーンに追加表示できます。座標やフォントサイズ、開閉アニメの有無など基本的な情報を設定できます。ウィンドウの表示テキストには制御文字が使用でき、変数値が変更されると自動的に再描画されます。
ふりがな:かくしーんについかでにんいのうぃんどうをひょうじ
機能概要: 任意のウィンドウを指定したシーンに追加表示できます。座標やフォントサイズ、開閉アニメの有無など基本的な情報を設定できます。ウィンドウの表示テキストには制御文字が使用でき、変数値が変更されると自動的に再描画されます。
利用規約(ライセンス):
・ツクールシリーズ利用規約にのみ従ってください。
・商用利用:許可
・追加改変:許可
・再配布:許可
作者:トリアコンタン
ダウンロードページ:https://tkool.jp/mz/download/
ファイル名:ExtraWindow.js
備考:RPGツクールMZ公式プラグイン。 C:Program Files (x86)SteamsteamappscommonRPG Maker MZdlc C:Program FilesKADOKAWARPGMZdlcBasicResources
プラグインのヘルプ:
/*:ja * @target MZ * @plugindesc 各シーンに追加で任意のウィンドウを表示します。 * @author トリアコンタン * @base PluginCommonBase * @orderAfter PluginCommonBase * * @param WindowList * @text ウィンドウリスト * @desc 各画面に追加するウィンドウのリストです。 * @default [] * @type struct<Window>[] * * @help ExtraWindow.js * * 任意のウィンドウを指定したシーンに追加表示できます。 * 座標やフォントサイズ、開閉アニメの有無など基本的な情報を設定できます。 * ウィンドウの表示テキストには制御文字が使用でき、変数値が変更されると * 自動的に再描画されます。 * */ /*~struct~Window:ja * * @param SceneName * @text 対象シーン * @desc 追加対象のシーンです。オリジナルのシーンを対象にする場合はシーンクラス名を直接記入します。 * @type select * @default Scene_Title * @option タイトル * @value Scene_Title * @option マップ * @value Scene_Map * @option ゲームオーバー * @value Scene_Gameover * @option バトル * @value Scene_Battle * @option メインメニュー * @value Scene_Menu * @option アイテム * @value Scene_Item * @option スキル * @value Scene_Skill * @option 装備 * @value Scene_Equip * @option ステータス * @value Scene_Status * @option オプション * @value Scene_Options * @option セーブ * @value Scene_Save * @option ロード * @value Scene_Load * @option ゲーム終了 * @value Scene_End * @option ショップ * @value Scene_Shop * @option 名前入力 * @value Scene_Name * @option デバッグ * @value Scene_Debug * * @param x * @text X座標 * @desc X座標です。 * @default 0 * @type number * @min -9999 * * @param y * @text Y座標 * @desc Y座標です。 * @default 0 * @type number * @min -9999 * * @param width * @text 横幅 * @desc 横幅です。 * @default 200 * @type number * * @param height * @text 高さ * @desc 高さです。0を指定した場合、自動設定されます。 * @default 0 * @type number * * @param LineHeight * @text 行の高さ * @desc 1行あたりの高さです。 * @default 36 * @type number * * @param Text * @text 表示テキスト * @desc ウィンドウに表示される内容です。制御文字のもとになる変数が変更された場合、自動で再描画されます。 * @default * @type multiline_string * * @param FontSize * @text フォントサイズ * @desc デフォルトのフォントサイズです。0を指定すると他のウィンドウと同じサイズになります。 * @default 0 * @type number * * @param WindowSkin * @text ウィンドウスキン * @desc ウィンドウスキンです。指定しなかった場合、デフォルトが使用されます。 * @default * @require 1 * @dir img/system * @type file * * @param SwitchId * @text 表示スイッチID * @desc 指定したスイッチがONの場合のみ画面に表示されます。 * @default 0 * @type switch * * @param ShowOpenAnimation * @text 開閉アニメ表示 * @desc ウィンドウの開閉アニメーションを表示します。 * @default true * @type boolean */
