Simple Menu Layout - SimpleMenuLayout.js

▼Simple Menu Layout(ツミオ様作) - SimpleMenuLayout.js
https://plugin.fungamemake.com/archives/1813
シンプルなメニュー画面を実装します。
ふりがな:めにゅーはいち
機能概要: シンプルなメニュー画面を実装します。
利用規約(ライセンス): MITライセンス
作者:ツミオ
作者サイト:https://x.com/TsumioNtGame
解説ページ:https://forum.tkool.jp/index.php?threads/502/
ダウンロードページ:https://raw.githubusercontent.com/Tsumio/rmmv-plugins/m…
ファイル名:SimpleMenuLayout.js
プラグインのヘルプ:
/*:ja * @plugindesc シンプルなメニュー画面を実装します。 * @author ツミオ * * @param ----基本的な設定---- * @desc * @default * * @param メニュー幅 * @type number * @desc メニューウィンドウの幅を指定します。 * @default 240 * * @param メニュー列数 * @type number * @desc メニューウィンドウの列数を指定します。 * @default 1 * * @param メニューX座標 * @type struct<XPos> * @desc メニューウィンドウのX座標を指定します。 * @default {”basis”:”center”,”correction”:”0”} * * @param メニューY座標 * @type struct<YPos> * @desc メニューウィンドウのY座標を指定します。 * @default {”basis”:”center”,”correction”:”0”} * * @help シンプルなメニュー画面を実装します。 * * 【特徴】 * ・メニュー画面のデザインを変更します。 * ・先頭のキャラクターに合わせて一枚絵を表示できます。 * * 【使用方法】 * プラグインを導入するとメニュー画面のデザインが変更されます。 * * 先頭のキャラクターに合わせて一枚絵を表示するには、アクターのメモ欄に以下のような記述をします。 * <stand_sml:[”ファイル名”,”X座標”,”Y座標”]> * * 例:<stand_sml:[”Package1_2”,”400”,”50”]> * * なお、画像ファイルはimg/tsumioフォルダから読み込まれます。 * * * 【プラグインコマンド】 * プラグインコマンドはありません。 * * * 【更新履歴】 * 1.0.0 2017/10/28 公開。 * * 【備考】 * 当プラグインを利用したことによるいかなる損害に対しても、制作者は一切の責任を負わないこととします。 * * 【利用規約】 * ソースコードの著作権者が自分であると主張しない限り、 * 作者に無断で改変、再配布が可能です。 * 利用形態(商用、18禁利用等)についても制限はありません。 * 自由に使用してください。 * */ /*~struct~XPos: * * @param basis * @type select * @option right * @option left * @option center * @desc 基準位置(basis). * * @param correction * @type number * @min -3000 * @max 3000 * @desc 補正(correction). */ /*~struct~YPos: * * @param basis * @type select * @option top * @option bottom * @option center * @desc 基準位置(basis). * * @param correction * @type number * @min -3000 * @max 3000 * @desc 補正(correction). */
