当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
日本語版 MOG Menu Cursor - MOG_MenuCursor.js
シェア用テキスト:
▼日本語版 MOG Menu Cursor(Moghunter様作) - MOG_MenuCursor.js
https://plugin-mz.fungamemake.com/archives/3522
アニメーションカーソルをメニューに追加
ふりがな:めにゅーかーそる
機能概要: アニメーションカーソルをメニューに追加
利用規約(ライセンス):https://fungamemake.com/mog-mz-japanese
作者:Moghunter
ダウンロードページ:https://fungamemake.com/archives/15025
ファイル名:MOG_MenuCursor.js
プラグインのヘルプ:
/*:ja * @target MZ * @plugindesc (v1.0) コマンドメニューにアニメーションカーソルを追加します。 * @author Moghunter * @url https://raw.githubusercontent.com/harizumi/Moghunter-MZ-jp/main/MOG_MenuCursor.js * * @param -> GENERAL * @text -> 全般 * @desc * * @param FileName * @parent -> GENERAL * @text ファイル名 * @desc 画像ファイル名の指定 * @type file * @dir img/menus/ * @default Cursor_A * * @param X-Axis Offset * @parent -> GENERAL * @text X軸オフセット * @desc カーソルX軸の指定 * @default 15 * * @param Y-Axis Offset * @parent -> GENERAL * @text Y軸オフセット * @desc カーソルY軸の指定 * @default 0 * * @param Show Selection * @parent -> GENERAL * @text 選択を表示 * @desc デフォルトのカーソル選択を表示 * @type boolean * @default true * * @param Show Selection All * @parent -> GENERAL * @text 選択範囲をすべて表示 * @desc デフォルトのカーソル選択を表示 * @type boolean * @default true * * @param Move Animation * @parent -> GENERAL * @text スライドアニメーション * @desc スライドアニメーションを有効化 * @type boolean * @default true * * @param Move Speed % * @parent -> GENERAL * @text スライド速度% * @desc カーソル速度の指定 (30%-> 1000%) * @type number * @min 30 * @max 1000 * @default 100 * * @param Align * @parent -> GENERAL * @desc カーソルの配置を設定します。 * @text 整列 * @type select * @default Left * @option 左 * @value Left * @option 中央 * @value Center * @option 右 * @value Right * * @param Animation Speed % * @parent -> GENERAL * @text アニメーション(速度%) * @desc アニメーションカーソル速度設定。 (30%-> 500%) * @type number * @min 30 * @max 500 * @default 100 * * @param ----------------------- * @desc * * @param -> WAVE ANIMATION * @text -> 波アニメ * @desc * * @param Wave Horizontal * @parent -> WAVE ANIMATION * @text 水平波 * @desc 水平方向のアニメーションを有効化 * @type boolean * @default true * * @param Wave Vertical * @parent -> WAVE ANIMATION * @text 垂直波 * @desc 垂直アニメーションを有効化 * @type boolean * @default false * * @param Wave Range * @parent -> WAVE ANIMATION * @text 範囲 * @desc アニメーション空間の指定 (5-> 50) * @type number * @min 5 * @max 50 * @default 15 * * @param Wave Speed % * @parent -> WAVE ANIMATION * @text 速度% * @desc アニメーション速度の指定 (30%-> 400%) * @type number * @min 30 * @max 400 * @default 100 * * @param ------------------------ * @desc * * @param -> ROTATION ANIMATION * @text -> 回転アニメ * @desc * * @param Rotation Animation * @parent -> ROTATION ANIMATION * @text 回転アニメーション * @desc 回転アニメーションを有効化 * @type boolean * @default false * * @param Rotation Speed % * @parent -> ROTATION ANIMATION * @text 速度% * @desc 回転速度の指定 (30%-> 1000%) * @type number * @min 30 * @max 1000 * @default 100 * * @param ------------------------- * @desc * * @param -> PARTICLES * @text -> パーティクル * @desc * * @param Particles * @parent -> PARTICLES * @text パーティクルエフェクト * @desc カーソル上でパーティクルを有効化 * @type boolean * @default true * * @param Par File Name * @parent -> PARTICLES * @text ファイル名 * @desc 画像ファイル名の指定 * @type file * @dir img/menus/ * @default Cursor_Par01 * * @param Par Number of Particles * @parent -> PARTICLES * @text 粒子数 * @desc 粒子の量の指定 (5-> 300) * @type number * @min 5 * @max 300 * @default 30 * * @param Par X-Axis Offset * @parent -> PARTICLES * @text X軸オフセット * @desc 粒子のX軸オフセットの指定 * @default 0 * * @param Par Y-Axis Offset * @parent -> PARTICLES * @text Y軸オフセット * @desc 粒子のX軸オフセットの指定 * @default 0 * * @param Par SX-Axis * @parent -> PARTICLES * @text X軸速度 * @desc 水平方向の粒子速度の指定 * @default -1 * * @param Par SY-Axis * @parent -> PARTICLES * @text Y軸速度 * @desc 垂直粒子速度の指定 * @default -2 * * @command MenuCursorGeneral * @desc コマンドカーソルの指定 * @text 全般的 * * @arg fileName * @text ファイル名 * @desc 画像ファイル名の指定 * @type file * @dir img/menus/ * @default Cursor_A * * @arg x * @text X軸オフセット * @desc カーソルのX軸の指定 * @default 15 * * @arg y * @text Y軸オフセット * @desc カーソルのY軸の指定 * @default 0 * * @arg slide * @text スライドアニメーション * @desc スライドアニメーションを有効化 * @type boolean * @default true * * @arg moveSpeed * @text スライド速度% * @desc カーソル速度の指定 (30%-> 1000%) * @type number * @min 30 * @max 1000 * @default 100 * * @arg align * @desc カーソルの配置を設定 * @text 整列 * @type select * @default Left * @option 左 * @value Left * @option 中央 * @value Center * @option 右 * @value Right * * @arg animeSpeed * @text アニメーション速度(%) * @desc アニメーションカーソル速度設定。 (30%-> 500%) * @type number * @min 30 * @max 500 * @default 100 * * @command MenuCursorWave * @desc 波の効果を設定します。 * @text 波の効果 * * @arg horzWave * @text 水平モード * @desc 水平方向のアニメーションを有効化 * @type boolean * @default true * * @arg vertWave * @text 垂直モード * @desc 垂直アニメーションを有効化 * @type boolean * @default false * * @arg waveRange * @text 範囲 * @desc アニメーション空間の指定 (5-> 50) * @type number * @min 5 * @max 50 * @default 15 * * @arg waveSpeed * @text 速度% * @desc アニメーション速度の指定 (30%-> 400%) * @type number * @min 30 * @max 400 * @default 100 * * @command MenuCursorRotation * @desc 回転効果の指定 * @text 回転効果 * * @arg rotation * @text 回転アニメーション * @desc 回転アニメーションを有効化 * @type boolean * @default false * * @arg rotationSpeed * @text 速度% * @desc 回転速度の指定 (30%-> 1000%) * @type number * @min 30 * @max 1000 * @default 100 * * @command MenuCursorParticles * @desc 粒子構成 * @text パーティクルエフェクト * * @arg parEnable * @text パーティクルエフェクト * @desc カーソル上でパーティクルを有効化 * @type boolean * @default true * * @arg parFileName * @text ファイル名 * @desc 画像ファイル名の指定 * @type file * @dir img/menus/ * @default Particles * * @arg parPower * @text 粒子数 * @desc 粒子の量の指定 (10-> 300) * @type number * @min 5 * @max 300 * @default 30 * * @arg parX_Offset * @text X軸オフセット * @desc 粒子のX軸オフセットの指定 * @default 0 * * @arg parY_Offset * @text Y軸オフセット * @desc 粒子のX軸オフセットの指定 * @default 0 * * @arg parSX * @text X軸速度 * @desc 水平方向の粒子速度の指定 * @default -1 * * @arg parSY * @text Y軸速度 * @desc 垂直方向の粒子速度の指定 * @default -2 * * @help * 翻訳: * https://fungamemake.com/ * * ============================================================================ * ♦♦♦ MOG - Menu Cursor ♦♦♦ * Author - Moghunter * Version - 1.0 * Updated - 2020/10/18 * https://mogplugins.wordpress.com * ============================================================================ * コマンドメニューにアニメーションカーソルを追加します。 * * ============================================================================ * ■ カーソル画像 * ============================================================================ * 以下のフォルダにカーソル画像を保存してください。 * * /img/menus/ * * ============================================================================ * ■ アニメーションカーソル * ============================================================================ * アニメーション化するには、カーソル画像のファイル名を下記のようにします。 * ※原文とファイル名の指定が異なりますが、下記でなければ動作しません。 * * FILE_NAME(Fx).png * * x - フレーム数 * * * Cursor(F5).png * * ============================================================================ * ■ プラグインコマンド * ============================================================================ * カーソル動作を変更するプラグインコマンドがあります。 * */