当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
DarkPlasma マップ上のキャラクターに残像を表示する - DarkPlasma_CharacterAfterimage.js
シェア用テキスト:
▼DarkPlasma マップ上のキャラクターに残像を表示する(DarkPlasma様作) - DarkPlasma_CharacterAfterimage.js
https://plugin-mz.fungamemake.com/archives/5294
マップ上のキャラクターに残像を表示します。
ふりがな:まっぷじょうのきゃらくたーにざんぞうをひょうじする
機能概要: マップ上のキャラクターに残像を表示します。
利用規約(ライセンス): MITライセンス
作者:DarkPlasma
作者サイト:https://elleonard.github.io/DarkPlasma-MZ-Plugins/index.html
解説ページ:https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree…
ダウンロードページ:https://raw.githubusercontent.com/elleonard/DarkPlasma-…
ファイル名:DarkPlasma_CharacterAfterimage.js
プラグインのヘルプ:
/*:
* @plugindesc マップ上のキャラクターに残像を表示する
* @author DarkPlasma
* @license MIT
*
* @target MZ
* @url https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree/release
*
* @param duration
* @text 表示時間(フレーム数)
* @type number
* @default 30
*
* @param generationInterval
* @text 生成間隔(フレーム数)
* @type number
* @default 4
*
* @param opacity
* @text 不透明度
* @type number
* @max 255
* @default 255
*
* @param colorTone
* @text 色調
* @type struct<ColorTone>
* @default {”red”:”0”,”blue”:”0”,”green”:”0”,”alpha”:”0”}
*
* @param blendMode
* @text 合成方法
* @type select
* @option 通常
* @value 0
* @option 加算
* @value 1
* @option 乗算
* @value 2
* @option スクリーン
* @value 3
* @default 0
*
* @command startAfterimage
* @text 残像の表示
* @desc プレイヤーまたはイベントに対して残像を表示します。
* @arg target
* @desc 残像の表示対象を選択します。
* @text 対象
* @type select
* @option プレイヤー
* @value player
* @option このイベント
* @value thisEvent
* @option 他のイベント
* @value otherEvent
* @default player
* @arg eventId
* @desc 対象が他のイベントの場合に、イベントIDを指定します。
* @text イベントID
* @type number
* @default 0
*
* @command clearAfterimage
* @text 残像の消去
* @desc プレイヤーまたはイベントに対して表示している残像を消去します。
* @arg target
* @desc 残像の表示対象を選択します。
* @text 対象
* @type select
* @option プレイヤー
* @value player
* @option このイベント
* @value thisEvent
* @option 他のイベント
* @value otherEvent
* @default player
* @arg eventId
* @desc 対象が他のイベントの場合に、イベントIDを指定します。
* @text イベントID
* @type number
* @default 0
*
* @help
* version: 1.0.1
* マップ上のキャラクターに残像を表示します。
*
* 本プラグインはセーブデータを拡張します。
* マップ上の残像を表示している各キャラクターについて、
* その表示状態をセーブデータに追加します。
*/