当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
パーティーコマンドの画像化(動き有) - v1.00 - kzmz_PicPartyCommand.js
シェア用テキスト:
▼パーティーコマンドの画像化(動き有) - v1.00(剣崎宗二様作) - kzmz_PicPartyCommand.js
https://plugin-mz.fungamemake.com/archives/8453
パーティーコマンドの画像化(動き有) - v1.00
ふりがな:ぱーてぃーこまんどのがぞうか(うごきゆう) - v1.00
機能概要: パーティーコマンドの画像化(動き有) - v1.00
利用規約(ライセンス): MITライセンス
作者:剣崎宗二
作者サイト:https://github.com/kenzakis2/RMPMZ_kenzaki/blob/main/kzmz_PicPartyCommand.js
ダウンロードページ:https://raw.githubusercontent.com/kenzakis2/RMPMZ_kenza…
ファイル名:kzmz_PicPartyCommand.js
プラグインのヘルプ:
* @author 剣崎宗二 * * @target MZ * * @param icon width * @desc 画像アイコンの横幅 * @type number * @min 0 * @default 100 * * @param icon height * @desc 画像アイコンの一つ辺りの縦幅 * @type number * @min 0 * @default 100 * * @param icon itemrect * @desc アイコンの間隔 * @type number * @min 0 * @default 10 * * @param icon cols * @desc アイコンを横に並べる数 * @type number * @min 1 * @default 4 * * @param icon maxexpansion * @desc アイコンの拡縮率 * @type number * @min 0 * @decimals 2 * @default 0.1 * * @param x overhead * @desc アイコンを並べる開始位置x * @type number * @min 0 * @default 0 * * @param y overhead * @desc アイコンを並べる開始位置y * @type number * @min 0 * @default 0 * * @param commandwindow x * @desc コマンドウインドウの位置x * @type number * @min -99999 * @default 0 * * @param commandwindow y * @desc コマンドウインドウの位置y * @type number * @min -99999 * @default 0 * * @param commandwindow width * @desc コマンドウインドウの幅 * @type number * @min 0 * @default 240 * * @param commandwindow height * @desc コマンドウインドウの高さ * @type number * @min 0 * @default 500 * * @param display disabled item * @desc 封印されたコマンドを表示するか? * @type boolean * @on YES * @off NO * @default false * * @param display cursor * @desc カーソルを表示/消去 * @type boolean * @on YES * @off NO * @default true * * @param window background file * @desc メニューウィンドウの背景ファイル。空白でデフォルト仕様になります。 * @type string * @default * * @param Symbol Chart * @desc シンボルと画像の対照表 * @type struct<SymbolChart>[] * @default [] * * @param Item Data * @desc 各項目のアニメーションデータ(並び順はメニューと同じ) * @type struct<MenuItemData>[] * @default [] * * @help kzmz_PicBattleMenu.js * * 使用する画像は全て img/system フォルダ内に入れてください。 * * □アイコン用画像… symbol毎に用意下さい。サイズ、名前は任意です。 * 但しサイズがicon width/ icon heightで設定された * 数値以上、以下の場合パラメータの数値サイズに * 自動で縮小/拡大されます。 * * □ウインドウ背景用画像…名称任意、パラメータ【window background file】 * 画像を使用しないがウインドウを透過したい場合は1 × 1 pixelの * 透過画像を用意してその名前をパラメータに入れて下さい。 * * □本体ver1.5.2以上の環境を想定しております、それ以下の環境下で * ご使用の場合何らかの不具合が出る可能性があります。 * * □フォントについて、デフォルトの数字フォントはrmmz-numberfont、通常フォントはrmmz-mainfontを指定してください。 * 他のフォントを使用する場合はkzmz_FontRegistrationを導入する必要があります。 * * ■デフォルトsymbol名一覧 * アイテム … item * スキル … skill * 攻撃 … attack * 防御 … guard * * 別のプラグインで新しいコマンドを追加した場合 * それらのsymbolを入力する事で同様に対応可能です。 * * Special Thanks: サイリ(Twitter:sairi55)-アイデア発案、及びサンプル素材制作 * * * 更新履歴 * v1.00 - kzmz_PicBattleMenu v1.02をベースに製造 *