当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
MOG Actor Picture CM - MOG_ActorPictureCM.js
シェア用テキスト:
▼MOG Actor Picture CM(Moghunter様作) - MOG_ActorPictureCM.js
https://plugin.fungamemake.com/archives/19189
コマンド選択中にキャラクターの画像(立ち絵)を表示
ふりがな:あくたーぴくちゃー
機能概要: コマンド選択中にキャラクターの画像(立ち絵)を表示
利用規約(ライセンス):https://mogplugins.wordpress.com/terms-of-use/
作者:Moghunter
作者サイト:https://x.com/moghunter1
解説ページ:https://fungamemake.com/archives/2511
ダウンロードページ:https://mogplugins.wordpress.com/rpg-maker-mv/
ファイル名:MOG_ActorPictureCM.js
プラグインのヘルプ:
/*:ja * @plugindesc (v2.4 *) 戦闘コマンド選択中にアクターの立ち絵を表示します。 * @author Moghunter * * @param -> MAIN <<<<<<<<<<<<<<<<<<<<<<< * @desc * * @param Slide Speed * @parent -> MAIN <<<<<<<<<<<<<<<<<<<<<<< * @desc スライドの速度設定 * @default 10 * * @param File Name * @parent -> MAIN <<<<<<<<<<<<<<<<<<<<<<< * @desc ファイル名の設定 * @default Actor_ * * @param * * @param -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @desc * * @param Bust Visible * @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @text Visible * @type boolean * @desc 立ち絵の有効設定 * @default true * * @param Bust X-Axis * @text X-Axis * @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @desc 立ち絵のX軸位置設定 * @default 0 * * @param Bust Y-Axis * @text Y-Axis * @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @desc 立ち絵のY軸位置設定 * @default 0 * * @param Bust Slide X * @text Slide Animation X * @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @desc 立ち絵のX軸スライド量 * @default -150 * * @param Bust Slide Y * @text Slide Animation Y * @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @desc 立ち絵のY軸スライド量 * @default 0 * * @param Breath Effect * @text Breath Animation * @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @type boolean * @desc 呼吸を活性化させる。 * @default true * * @param Blink Effect * @text Blink Animation * @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @type boolean * @desc 点滅エフェクトの有効設定 * @default false * * @param Blink Speed * @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @desc 点滅の速度 * @default 7 * * @param Blinking Interval * @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<< * @desc 点滅の間隔 * @default 190 * * @param * * @param -> FACE <<<<<<<<<<<<<<<<<<<<<<< * @desc * * @param Face Visible * @text Visible * @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<< * @type boolean * @desc 顔画像の有効設定 * @default true * * @param Face X-Axis * @text X-Axis * @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<< * @desc 顔画像のX軸位置設定 * @default 570 * * @param Face Y-Axis * @text Y-Axis * @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<< * @desc 顔画像のY軸位置設定 * @default 0 * * @param Face Slide X * @text Slide Animation X * @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<< * @desc 顔画像のX軸スライド量 * @default 150 * * @param Face Slide Y * @text Slide Animation Y * @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<< * @desc 顔画像のY軸スライド量 * @default 0 * * @help * 翻訳:ムノクラ * https://munokura.tk/ * https://twitter.com/munokura/ * * ============================================================================ * +++ MOG - Actor Picture CM (v2.4) +++ * By Moghunter * https://atelierrgss.wordpress.com/ * ============================================================================ * 戦闘コマンド選択中にアクターの立ち絵を表示します。 * * ============================================================================ * - 必要ファイル - * ============================================================================ * 戦闘コマンド選択中にアクターの立ち絵を表示します。 /img/actor_picture_cm/ * ファイル名は下記のようにしてください。 * * Actor_ + ID + _bust.png * * 例 * * -> Actor_1_bust.png * -> Actor_2_bust.png * -> Actor_3_bust.png * * ---------------------------------------------------------------------------- * * アクターのサブ画像を設定する場合、ファイル名は下記のようにしてください。 * * -> Actor_ ID + _sub.png * * 例 * * -> Actor_1_sub.png * -> Actpr_2_sub.png * -> ... * * --------------------------------------------------------------------------- * * 目の画像を設定するには、ファイル名は下記のようにしてください。 * * -> Actor_ ID + _eyes.png * * 例 * * -> Actor_1_eyes.png * -> Actpr_2_eyes.png * -> ... * * ============================================================================ * - プラグインコマンド - * ============================================================================ * ゲームの途中で表示する画像ファイルを変更したい場合、 * 以下のコマンドを使用してください。 * * actorCM_fileName : ACTOR_ID : FILE_NAME * * 例 * * actorCM_fileName : 1 : ActorAwaked_5 * * ============================================================================ * 呼吸エフェクトを有効/無効にするには、以下のプラグインコマンドを使用します。 * * actorCM_breathEffect : ACTOR_ID : ENABLE * * 例 * * actorCM_breathEffect : 1 : true * * ============================================================================ * - 更新履歴 (version 2.4) * ============================================================================ * - (NEW) - RM1.5 +と互換性のあるプラグインパラメータ * - (BUG FIX) - メッセージウィンドウが有効な時、 * 画像を隠さないバグを修正しました。(ATBプラグイン) * */