Welcome to PGMZ! 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 Track Name Window - LL_TrackNameWindow.js
Plugin desc : Displays the track name when the BGM changes.
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-trackname-window/
File name : LL_TrackNameWindow.js
Help of plugin :
* @target MZ * @plugindesc Displays the track name when the BGM changes. * @author Lulu's Church * @url https://nine-yusha.com/plugin-trackname-window/ * * @help LL_TrackNameWindow.js * * Displays the track name when the BGM changes. * Allows you to implement effects commonly seen in adventure games. * The track name window will not appear during battles. * Use plugin commands to toggle the display state of the track name. * * 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: 2022/1/10 * * @command setEnabled * @text Toggle Track Name Display * @desc Toggles the display of the track name ON or OFF. * * @arg enabled * @text Show Track Name * @desc If OFF, the track name will not be shown. * @default true * @type boolean * * @param trackLists * @text Track Name List * @desc Defines track names. BGM not in this list will not be displayed. * @default [] * @type struct<trackLists>[] * * @param twX * @text X Position * @desc The X position of the window. * @default 576 * @max 9999 * @min -9999 * @type number * * @param twY * @text Y Position * @desc The Y position of the window. Recommend 50 or more to avoid overlap * with the map name window. * @default 50 * @max 9999 * @min -9999 * @type number * * @param twWidth * @text Width * @desc The width of the window. * @default 240 * @type number * * @param twTransition * @text Animation * @desc Select the animation style for the window appearance. * @type select * @default 3 * @option Fade * @value 1 * @option Float Left * @value 2 * @option Float Right * @value 3 * @option Float Down * @value 4 * @option Float Up * @value 5 * * @param twShowCount * @text Display Duration * @desc Duration the window is shown (1/60 sec). * @default 150 * @type number * * @param twOriginalBg * @text Background Image Filename * @desc Select a file to use as the background image. * @dir img/system * @type file * * @param twTextColor * @text Text Color * @desc Enter a CSS color code for the text color. * @default #ffffff * @type string * * @param twTextBorder * @text Text Outline * @desc Select the text outline color. * @default rgba(0, 0, 0, 0.6) * @type select * @option Black (Default) * @value rgba(0, 0, 0, 0.6) * @option White * @value rgba(255, 255, 255, 0.6) * @option None * @value rgba(0, 0, 0, 0) * * @param optionCommandName * @text Option Name * @desc Item name shown in the options menu. * Leave blank to hide it from the menu. * @default Show Track Name * @type string