NGT Color Tone Storage - NGT_ColorToneStorage.js

▼NGT Color Tone Storage(ベルファーレ長田様作) - NGT_ColorToneStorage.js
https://plugin.fungamemake.com/archives/13704
画面の色調を保存し、プラグインコマンドで復元します。
ふりがな:からーとーんすとろんぐ
機能概要: 画面の色調を保存し、プラグインコマンドで復元します。
利用規約(ライセンス): MITライセンス
作者:ベルファーレ長田
作者サイト:https://x.com/velfare_nagata
ダウンロードページ:https://raw.githubusercontent.com/VelfareNagata/RPG-Mak…
ファイル名:NGT_ColorToneStorage.js
プラグインのヘルプ:
/*:ja
* @plugindesc Save the color tone of the screen and restore it with the plugin command.
*
* @author Velfare Nagata
*
* @param ColorToneDictionary
* @desc It is color tone information to keep.
* @type struct<ColorToneDictionary>[]
* @default []
*
* @help When saving the current screen tone
* CT_SCREEN_SAVE {0}
* {0}:Key
*
* When saving with specified screen color tone information
* CT_SCREEN_SAVE {0} {1} {2} {3} {4}
* {0}:Key
* {1}:色調:赤
* {2}:色調:緑
* {3}:色調:青
* {4}:色調:グレー
*
* When restoring the color tone information of the specified key
* CT_SCREEN_RESTORE {0} {1} {2}
* {0}:Key
* {1}:色調遷移フレーム数
* {2}:ウェイトあり/なしフラグ
* trueを指定するとウェイトあり
* falseを指定するとウェイトなし
* 省略した場合もウェイトなし
*
* When deleting the color tone information of the specified key
* CT_SCREEN_DELETE {0}
* {0}:Key
*/
/*:ja
* @plugindesc 画面の色調を保存し、プラグインコマンドで復元します。
*
* @author ベルファーレ長田(゜∀゜)◆AHYA/HaiA.
*
* @param ColorToneDictionary
* @desc ゲーム内で予め保存しておく色調情報です。
* @type struct<ColorToneDictionary>[]
* @default []
*
* @help 現在の画面色調を保存する場合
* CT_SCREEN_SAVE {0}
* {0}:キー名
*
* 指定した画面色調情報で保存する場合
* CT_SCREEN_SAVE {0} {1} {2} {3} {4}
* {0}:キー名
* {1}:色調:赤
* {2}:色調:緑
* {3}:色調:青
* {4}:色調:グレー
*
* 指定したキー名の色調情報を復元する場合
* CT_SCREEN_RESTORE {0} {1} {2}
* {0}:キー名
* {1}:色調遷移フレーム数
* {2}:ウェイトあり/なしフラグ
* trueを指定するとウェイトあり
* falseを指定するとウェイトなし
* 省略した場合もウェイトなし
*
* 指定したキー名の色調情報を削除する場合
* CT_SCREEN_DELETE {0}
* {0}:キー名
*/
/*~struct~ColorToneDictionary
* @param key
* @desc Specify the key name of color tone information to be saved.
* @type string
* @default
*
* @param red
* @desc Specify red color tone information.
* @type number
* @default 0
* @min -255
* @max 255
*
* @param green
* @desc Specify green color tone information.
* @type number
* @default 0
* @min -255
* @max 255
*
* @param blue
* @desc Specify blue color tone information.
* @type number
* @default 0
* @min -255
* @max 255
*
* @param gray
* @desc Specify gray color tone information.
* @type number
* @default 0
* @min -255
* @max 255
*/
/*~struct~ColorToneDictionary:ja
* @param key
* @desc 保存する色調情報のキー名を指定します。
* @type string
* @default
*
* @param red
* @desc 色調情報の赤を指定します。
* @type number
* @default 0
* @min -255
* @max 255
*
* @param green
* @desc 色調情報の緑を指定します。
* @type number
* @default 0
* @min -255
* @max 255
*
* @param blue
* @desc 色調情報の青を指定します。
* @type number
* @default 0
* @min -255
* @max 255
*
* @param gray
* @desc 色調情報のグレーを指定します。
* @type number
* @default 0
* @min -255
* @max 255
*/
