当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
日本語版 MOG Character Motion - MOG_CharacterMotion.js
シェア用テキスト:
▼日本語版 MOG Character Motion(Moghunter様作) - MOG_CharacterMotion.js
https://plugin-mz.fungamemake.com/archives/3510
マップ画面でプレイヤー/イベント画像にアニメーションを追加
ふりがな:きゃらくたーもーしょん
機能概要: マップ画面でプレイヤー/イベント画像にアニメーションを追加
利用規約(ライセンス):https://fungamemake.com/mog-mz-japanese
作者:Moghunter
ダウンロードページ:https://fungamemake.com/archives/14035
ファイル名:MOG_CharacterMotion.js
プラグインのヘルプ:
/*:ja * @target MZ * @plugindesc (v1.0) プレイヤー/イベント画像にアニメーションを追加します。 * @author Moghunter * @url https://raw.githubusercontent.com/harizumi/Moghunter-MZ-jp/main/MOG_CharacterMotion.js * * @command CharIddleMotionEvent * @desc イベントのアニメーションを指定 * @text アイドリングモーション(イベント) * * @arg id * @desc イベントIDを指定 * @text イベントID * @default 1 * @type number * @min 1 * * @arg motion * @desc イベントのアニメーションを指定 * @text モーション * @default Breath Effect 1 * @type select * @option 呼吸エフェクト1 * @value Breath Effect 1 * @option 呼吸エフェクト2 * @value Breath Effect 2 * @option 浮遊エフェクト * @value Float Effect * @option 揺れエフェクト * @value Swing Effect * @option 幽霊エフェクト * @value Ghost Effect * * @command CharIddleMotionPlayer * @desc プレイヤーと味方のアニメーションを指定 * @text アイドルモーション(プレイヤー) * * @arg id * @desc プレイヤーのインデックスを指定 * @text プレイヤーインデックス * @default 1 * @type number * @min 1 * * @arg motion * @desc イベントのアニメーションを指定 * @text モーション * @default Breath Effect 1 * @type select * @option 呼吸エフェクト1 * @value Breath Effect 1 * @option 呼吸エフェクト2 * @value Breath Effect 2 * @option 浮遊エフェクト * @value Float Effect * @option 揺れエフェクト * @value Swing Effect * @option 幽霊エフェクト * @value Ghost Effect * * @command CharShakeMotionEvent * @desc イベントのシェイク効果を有効化 * @text シェイクモーション(イベント) * * @arg id * @desc イベントIDを指定 * @text イベントID * @default 1 * @type number * @min 1 * * @arg duration * @desc シェイク時間の長さ * @text 間隔 * @default 60 * @type number * @min 10 * * @command CharShakeMotionPlayer * @desc プレイヤーのシェイク効果を有効化 * @text シェイクモーション(プレイヤー) * * @arg id * @desc プレイヤーのインデックスを指定 * @text プレイヤーインデックス * @default 1 * @type number * @min 1 * * @arg duration * @desc シェイク時間の長さ * @text 間隔 * @default 60 * @type number * @min 10 * * @command CharRotationMotionEvent * @desc イベントの回転効果を有効化 * @text 回転運動(イベント) * * @arg id * @desc イベントIDを指定 * @text イベントID * @default 1 * @type number * @min 1 * * @arg angle * @desc 角度の指定 * @text 角度 * @default 90 * * @command CharRotationMotionPlayer * @desc プレイヤーの回転効果を有効化 * @text 回転モーション(プレイヤー) * * @arg id * @desc プレイヤーのインデックスを指定 * @text プレイヤーインデックス * @default 1 * @type number * @min 1 * * @arg angle * @desc 角度の指定 * @text 角度 * @default 90 * * @command CharZoomMotionEvent * @desc イベントのズーム効果を有効化 * @text ズームモーション(イベント) * * @arg id * @desc イベントIDを指定 * @text イベントID * @default 1 * @type number * @min 1 * * @arg zoom * @desc ズーム値を指定 * @text ズーム(%) * @default 200 * @type number * @min 10 * @max 2000 * * @command CharZoomMotionPlayer * @desc プレイヤーのズーム効果を有効化 * @text ズームモーション(プレイヤー) * * @arg id * @desc プレイヤーのインデックスを指定 * @text プレイヤーインデックス * @default 1 * @type number * @min 1 * * @arg zoom * @desc ズーム値を指定 * @text ズーム(%) * @default 200 * @type number * @min 10 * @max 2000 * * @command CharCollapseMotionEvent * @desc イベントの崩壊エフェクトを有効化 * @text 崩壊モーション(イベント) * * @arg id * @desc イベントIDを指定 * @text イベントID * @default 1 * @type number * @min 1 * * @arg collapse * @desc 崩壊エフェクトを指定 * @text 効果 * @default Vertical Collapse * @type select * @option 縦に崩壊 * @value Vertical Collapse * @option 横に崩壊 * @value Horizontal Collapse * @option 縦横に崩壊 * @value Vert & Horiz Collapse * * @command CharCollapseMotionPlayer * @desc プレイヤーの崩壊エフェクトを有効化 * @text 崩壊モーション(プレイヤー) * * @arg id * @desc プレイヤーのインデックスを指定 * @text プレイヤーインデックス * @default 1 * @type number * @min 1 * * @arg collapse * @desc 崩壊エフェクトを指定 * @text 効果 * @default Vertical Collapse * @type select * @option 縦に崩壊 * @value Vertical Collapse * @option 横に崩壊 * @value Horizontal Collapse * @option 縦横に崩壊 * @value Vert & Horiz Collapse * * @command CharMotionEventRemove * @desc イベントのアニメーションを指定 * @text モーションの削除(イベント) * * @arg id * @desc イベントIDを指定 * @text イベントID * @default 1 * @type number * @min 1 * * @command CharMotionPlayerRemove * @desc イベントのアニメーションを指定 * @text モーションを削除(プレイヤー) * * @arg id * @desc プレイヤーIDとフォロワーを指定 * @text プレイヤーID * @default 1 * @type number * @min 1 * * @help * 翻訳: * https://fungamemake.com/ * * ============================================================================= * +++ MOG - Character Motion (v1.0) +++ * By Moghunter * https://mogplugins.wordpress.com * ============================================================================= * プレイヤー/イベント画像にアニメーションを追加します。 * =========================================================================== * 使用方法 * =========================================================================== * イベントへの効果を自動的に有効にするには、下記をイベント内容に注釈で入れます。 * イベント内容を実行しなくても反映されます。 * * Breath Motion 1 * * Breath Motion 2 * * Float Motion * * Swing Motion * * Ghost Motion * * =========================================================================== * プラグインコマンド * =========================================================================== * プラグインコマンドがあります。 */