Welcome to PGMV! My goal is to make it easy for everyone to find and share great plugins for creating amazing games. As a plugin developer myself, I'm excited to grow this community with all of you.
LL Custom Fade MV - LL_CustomFadeMV.js
Plugin desc : Implements fade-in and fade-out with customizable duration.
License :
・Copyright: Retained
・Commercial Use: Allowed
・Modification: Allowed
・Redistribution: Prohibited (This does not apply to works made using the material.)
・Details: See Download Page / In-plugin documentation
Author : Lulu's Church
Website : https://nine-yusha.com/
Desc page : https://nine-yusha.com/plugin-customfade/
File name : LL_CustomFadeMV.js
Help of plugin :
* @target MV * @plugindesc Implements fade-in and fade-out with customizable duration. * @author Lulu's Church * @url https://nine-yusha.com/plugin-customfade/ * * @help LL_CustomFadeMV.js * * This plugin implements fade-in and fade-out with customizable duration. * Use plugin commands to perform fade-in and fade-out transitions. * * Plugin Commands: * LL_CustomFadeMV fadeout 60 true # Fade out (60 frames) * LL_CustomFadeMV fadeout 90 false # Fade out (90 frames, no wait) * LL_CustomFadeMV fadein 60 true # Fade in (60 frames) * LL_CustomFadeMV fadein 90 false # Fade in (90 frames, no wait) * * Terms of use: * ・No copyright notice required. * ・No report needed for use. * ・Free for commercial and non-commercial. * ・No restriction for adult works. * ・You may modify freely for your game. * ・Redistribution as plugin material (incl. modified) prohibited. * * Author: Lulu's Church * Date: 2020/11/26 * * @command fadeout * @text Fade Out * @desc Gradually darkens the screen until it becomes completely black. * * @arg time * @text Duration * @desc Duration of the fade-out in frames (1/60 second per frame). * @default 60 * @type number * * @arg waiting * @text Wait Until Complete * @desc Wait until the effect finishes. * @default true * @type boolean * * @command fadein * @text Fade In * @desc Gradually brightens the screen back to normal. * * @arg time * @text Duration * @desc Duration of the fade-in in frames (1/60 second per frame). * @default 60 * @type number * * @arg waiting * @text Wait Until Complete * @desc Wait until the effect finishes. * @default true * @type boolean