当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
枠なし選択肢表示 - FramelessChoiceList.js
シェア用テキスト:
▼枠なし選択肢表示(nz_prism様作) - FramelessChoiceList.js
https://plugin-mz.fungamemake.com/archives/3041
選択肢ウィンドウの枠をなくして代わりに背景をグラデーション付き黒背景にします。選択肢の行頭には選択時・非選択時に表示が切り替わる選択画像を表示できます。画像を表示しない場合、カーソルが代わりに表示されます。
ふりがな:わくなしせんたくしひょうじ
機能概要: 選択肢ウィンドウの枠をなくして代わりに背景をグラデーション付き黒背景にします。選択肢の行頭には選択時・非選択時に表示が切り替わる選択画像を表示できます。画像を表示しない場合、カーソルが代わりに表示されます。
利用規約(ライセンス): MITライセンス
作者:nz_prism
作者サイト:https://note.com/nz_prism
解説ページ:https://github.com/nz-prism/RPG-Maker-MZ/tree/master/Fr…
ダウンロードページ:https://raw.githubusercontent.com/nz-prism/RPG-Maker-MZ…
ファイル名:FramelessChoiceList.js
プラグインのヘルプ:
/*:ja * @target MZ * @plugindesc 選択肢ウィンドウの外見を枠のない黒背景に変更します。 * @author nz_prism * @url https://github.com/nz-prism/RPG-Maker-MZ/blob/master/FramelessChoiceList/js/plugins/FramelessChoiceList.js * * @help FramelessChoiceList.js * ver 1.1.0 * * [バージョン履歴] * 2021/06/26 1.0.0 リリース * 2021/06/26 1.1.0 プラグインパラメータ「Y座標オフセット」を追加 * * このプラグインは、選択肢ウィンドウの枠をなくして代わりに背景をグラデーション * 付き黒背景にします。選択肢の行頭には選択時・非選択時に表示が切り替わる選択画 * 像を表示できます。画像を表示しない場合、カーソルが代わりに表示されます。ま * た、選択肢ウィンドウの幅や項目の高さをプラグインパラメータにて柔軟に変更可能 * です。 * * * このプラグインはMITライセンスにてリリースされています。 * https://opensource.org/licenses/mit-license.php * * * @param windowWidthPlus * @text ウィンドウ幅加算値 * @desc 選択肢ウィンドウの幅に加算する値です。 * @default 480 * @type number * @min -10000 * * @param lineHeight * @text 行高さ * @desc 選択肢項目の高さです。 * @default 36 * @type number * @min 1 * * @param rowSpacing * @text 行間隔 * @desc 選択肢項目間の余白の高さです。 * @default 4 * @type number * @min 0 * * @param offsetY * @text Y座標オフセット * @desc 選択肢ウィンドウとメッセージウィンドウの距離です。 * @default 24 * @type number * @min 0 * * @param useSelectionImage * @text 選択画像を使用 * @desc オンにすると選択画像を使用します。オフにするとカーソル表示されます。 * @default true * @type boolean * * @param activeSelectionImage * @text アクティブ選択画像 * @desc 選択肢が選ばれているときに表示される画像ファイルです。 * @default Selection_Active * @type file * @dir img/system * @parent useSelectionImage * * @param deactiveSelectionImage * @text 非アクティブ選択画像 * @desc 選択肢が選ばれていないときに表示される画像ファイルです。 * @default Selection_Deactive * @type file * @dir img/system * @parent useSelectionImage * * @param imageAllowance * @text 画像テキスト間隔 * @desc 選択画像とテキストの間の余白幅です。 * @default 8 * @type number * @min 0 * @parent useSelectionImage * */