当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
選択肢背景をウィンドウにする - SelectableWindow.js
シェア用テキスト:
▼選択肢背景をウィンドウにする(あわやまたな様作) - SelectableWindow.js
https://plugin-mz.fungamemake.com/archives/6492
選択肢背景をウィンドウにします。
ふりがな:せんたくしはいけいをうぃんどうにする
機能概要: 選択肢背景をウィンドウにします。
利用規約(ライセンス): MITライセンス
作者:あわやまたな
作者サイト:https://awaya3ji.seesaa.net/
解説ページ:https://awaya3ji.seesaa.net/article/491065758.html
ファイル名:SelectableWindow.js
プラグインのヘルプ:
/*:ja * @target MZ * @plugindesc 選択肢背景をウィンドウにします。 * @orderAfter FesCursor * @author あわやまたな (Awaya_Matana) * @url https://awaya3ji.seesaa.net/article/491065758.html * @help [更新履歴] * 2022/08/28:Ver.1.0.0 公開。 * 2022/12/22:Ver.1.1.0 背後にあるウィンドウを透過する機能を追加。 * 2023/01/28:Ver.1.1.1 クリック判定を修正。 * 2023/02/05:Ver.2.0.0 任意のウィンドウを装飾できる機能を追加。 * 2023/08/02:Ver.3.0.0 難解だったパラメータの調整方法を修正。 * * @param windowSkin * @text ウィンドウスキン * @desc ファイル名を指定します。 * @default * @type file * @dir img/system * * @param windowOpacity * @text ウィンドウ不透明度 * @desc ウィンドウの不透明度を指定します。 * -1でシステムの初期値。 * @default -1 * @type number * @min -1 * * @param windowThrough * @text ウィンドウ透過 * @desc 背後にあるウィンドウが見えるようにします。 * @default false * @type boolean * * @param gradientWidth * @text カーソル装飾幅 * @desc 装飾に使うグラデーションの幅です。 * @default 16 * @type number * * @param cursorPad * @text カーソル幅拡張 * @desc ウィンドウのカーソルの表示範囲を拡張します。 * @default 0 * @type number * @min -999999 * * @param offsetW1 * @text 要素幅 * @desc 要素の幅の補正値 * @default -8 * @type number * @min -999999 * * @param offsetH1 * @text 要素高さ * @desc 要素の高さの補正値 * @default -8 * @type number * @min -999999 * * @param offsetW2 * @text ウィンドウ幅 * @desc ウィンドウの幅の補正値 * @default 2 * @type number * @min -999999 * * @param offsetH2 * @text ウィンドウ高さ * @desc ウィンドウの高さの補正値 * @default 2 * @type number * @min -999999 * * @param inclusionList * @text 包含リスト * @desc 選択肢背景をウィンドウにするウィンドウを設定します。 * @type string[] * @default [”Window_SavefileList”,”Window_MenuCommand”,”Window_MenuStatus”,”Window_MenuActor”,”Window_ItemCategory”,”Window_EquipCommand”,”Window_ShopCommand”,”Window_ProfileTab”] * * @param decorationList * @text 装飾リスト * @desc 選択肢背景カーソルを装飾するウィンドウを設定します。 * @type string[] * @default [”Window_SavefileList”] * */