事前のお知らせ

MOGシリーズ:RPGツクールMZ

日本語版MOG Actor Picture CM MZプラグイン v1.0 #RPGツクールMZ

「戦闘コマンド選択中にアクターの立ち絵を表示できる」プラグインです。

こちらはRPGツクールMZ向けの記事です。
RPGツクールMV向けの記事もございます。

下記ページで最新版が配布されています。
mogplugins.wordpress.com/rpg-maker-mz/

ダウンロードはコチラ

どなたかのお役に立てば幸いです。

/*:ja
* @target MZ
* @plugindesc (v1.0) 戦闘コマンド選択中にアクターの立ち絵を表示します。
* @author Moghunter
* @url raw.githubusercontent.com/harizumi/Moghunter-MZ-jp/main/MOG_ActorPictureCM.js
*
* @param -> MAIN <<<<<<<<<<<<<<<<<<<<<<<
* @text -> 一般 <<<<<<<<<<<<<<<<<<<<<<<
*
* @param Slide Speed
* @parent -> MAIN <<<<<<<<<<<<<<<<<<<<<<<
* @text スライド速度
* @default 10
*
* @param
*
* @param -> BUST <<<<<<<<<<<<<<<<<<<<<<<
* @text -> 立ち絵 <<<<<<<<<<<<<<<<<<<<<<<
*
* @param Bust Visible
* @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<<
* @text 有効化
* @default true
* @type boolean
* @on 有効
* @off 無効
*
* @param Bust X-Axis
* @text X軸位置
* @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<<
* @default 608
* @desc 正:右 / 負:左
* @type number
* @min -9007
* @max 9007
*
* @param Bust Y-Axis
* @text Y軸位置
* @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<<
* @default 624
* @desc 正:下 / 負:上
* @type number
* @min -9007
* @max 9007
*
* @param Bust Slide X
* @text X軸スライド量
* @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<<
* @default -150
* @desc 正:右 / 負:左
* @type number
* @min -9007
* @max 9007
*
* @param Bust Slide Y
* @text Y軸スライド量
* @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<<
* @default 0
* @desc 正:下 / 負:上
* @type number
* @min -9007
* @max 9007
*
* @param Breath Effect
* @text 呼吸アニメ有効化
* @parent -> BUST <<<<<<<<<<<<<<<<<<<<<<<
* @default false
* @type boolean
* @on 有効
* @off 無効
*
* @param
*
* @param -> FACE <<<<<<<<<<<<<<<<<<<<<<<
* @text -> サブ画像 <<<<<<<<<<<<<<<<<<<<<<<
*
* @param Face Visible
* @text 有効化
* @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<<
* @default true
* @type boolean
* @on 表示
* @off 非表示
*
* @param Face X-Axis
* @text X軸位置
* @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<<
* @default 570
* @desc 正:右 / 負:左
* @type number
* @min -9007
* @max 9007
*
* @param Face Y-Axis
* @text Y軸位置
* @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<<
* @default 0
* @desc 正:下 / 負:上
* @type number
* @min -9007
* @max 9007
*
* @param Face Slide X
* @text Slide Animation X
* @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<<
* @text X軸スライド量
* @default 150
* @desc 正:右 / 負:左
* @type number
* @min -9007
* @max 9007
*
* @param Face Slide Y
* @text Y軸スライド量
* @parent -> FACE <<<<<<<<<<<<<<<<<<<<<<<
* @default 0
* @desc 正:下 / 負:上
* @type number
* @min -9007
* @max 9007
*
* @command ActorPicture_setFileName
* @desc キャラ画像を変更
* @text ファイル名 (立ち絵)
*
* @arg id
* @desc キャラIDの指定
* @text Id
* @default 1
* @type number
* @min 1
*
* @arg filename
* @desc 画像ファイルの指定
* @text ファイル名
* @default Bust_Test
* @type file
* @dir img/actor_picture_cm/
*
* @arg breath
* @desc 呼吸エフェクトを有効化
* @text 呼吸エフェクト
* @default false
* @type boolean
* @on 有効
* @off 無効
*
* @arg visible
* @desc 画像の表示/非表示を切り替え
* @text Visible
* @default true
* @type boolean
* @on 表示
* @off 非表示
*
* @command ActorPicture_setFileName2
* @desc キャラのサブ画像を変更
* @text ファイル名 (サブ)
*
* @arg id
* @desc キャラIDの指定
* @text Id
* @default 1
* @type number
* @min 1
*
* @arg filename
* @desc 画像ファイルの指定
* @text ファイル名
* @default Bust_Test2
* @type file
* @dir img/actor_picture_cm/
*
* @arg visible
* @desc 画像の表示/非表示を切り替え
* @text Visible
* @default true
* @type boolean
* @on 表示
* @off 非表示
*
* @help
* 翻訳:
* fungamemake.com/
*
* ===========================================================================
* +++ MOG - Actor Picture CM (v1.0) +++
* By Moghunter
* mogplugins.wordpress.com
* ===========================================================================
* 戦闘コマンド選択中にアクターの立ち絵を表示します。
*
* ===========================================================================
* - 必要ファイル -
* ===========================================================================
* 戦闘コマンド選択中にアクターの立ち絵を表示します。
* /img/actor_picture_cm/
* ファイル名は下記のようにしてください。
*
* Actor_ + ID + _bust.png
*
* 例
*
* -> Actor_1_bust.png
* -> Actor_2_bust.png
* -> Actor_3_bust.png
*
* ---------------------------------------------------------------------------
*
* アクターのサブ画像ファイル名は下記のようにしてください。
*
* -> Actor_ ID + _sup.png <- ファイル名注意!(元ヘルプのミスです)
*
* 例
*
* -> Actor_1_sup.png
* -> Actpr_2_sup.png
* -> ...
*
* ===========================================================================
* - プラグインコマンド -
* ===========================================================================
* 呼吸エフェクトとサブ画像についてのプラグインコマンドがあります。
*
*
*/

スポンサードリンク

スポンサードリンク

-MOGシリーズ:RPGツクールMZ
-

Copyright© RPGツクールMZ・MV初心者的備忘録 - FGMG (Fun Game Make Group) , 2024 All Rights Reserved.