ゴーストのようにキャラクター効果を実装することができます – RS_GhostEffect.js
- タイトル
- This plugin allows you to apply a ghost-like visual effect to characters.
- 作者名
- biud436様
- ヘルプ
-
This plugin requires WebGL mode to work properly.
=======================================================
How to Enable or Disable Ghost Mode
=======================================================
Use the following script calls within the "Set Move Route" event command:
To enable ghost mode:
this.ghostModeOn();
To disable ghost mode:
this.ghostModeOff();
These commands can be applied to any character, including followers.
=======================================================
Plugin Commands
=======================================================
You can use these commands in event scripts to adjust the ghost effect dynamically:
1. Set the lifeTime of the ghost effect:
GhostEffect lifetime 100
- Changes the duration of the ghost effect cycle to 0.1 seconds.
2. Set the threshold of the ghost effect:
GhostEffect threshold 0.7
- Adjusts the intensity of the ghost effect. A value closer to 1.0 makes it less noticeable.
3. Set the xoffset of the ghost effect:
GhostEffect xoffset 0.07
- Controls the horizontal distortion, making the effect resemble burning paper at lower values.
=======================================================
Examples
=======================================================
Make a character look like a ghost with a quick effect change:
GhostEffect lifetime 50
Reduce the intensity of the ghost effect:
GhostEffect threshold 0.9
Create a more distorted ghost effect:
GhostEffect xoffset 0.1
=======================================================
Technical Details
=======================================================
- WebGL Requirement: This plugin uses WebGL shaders. Ensure the game is running in WebGL mode.
- Performance Consideration: Using too many ghost effects may impact performance on lower-end devices.
=======================================================
Version History
=======================================================
v1.0.0 (2019.01.19) - First release.
v1.0.1 (2023.08.12) - ES6 refactoring and tested on RPG Maker MV v1.6.2 with NW.js v0.55.0.
=======================================================
Tips
=======================================================
- Combine the ghost effect with lighting or particle effects for a supernatural atmosphere.
- Useful for boss fights or special characters to visually distinguish them. - パラメータ
-
param Uniform param lifeTime parent Uniform type number desc Specifies the duration (in milliseconds) for each cycle of the ghost effect. After this time, the effect pattern will change. default 100 min 1 param threshold parent Uniform type number desc Controls the visibility intensity of the effect. Higher values reduce the effect's intensity. default 0.7 decimals 2 min 0.10 max 1.00 param xoffset parent Uniform type number desc Adjusts the horizontal distortion of the ghost effect. Lower values make it look like burning paper. default 0.07 decimals 2 - ライセンス表記
- MIT License
Copyright (c) 2019 biud436
Free for commercial and non commercial use.
紹介ページ https://github.com/biud436/MV/blob/master/RS_GhostEffect.js