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.
Frameless Choice List - FramelessChoiceList.js
Plugin desc : Makes the choice window frameless.
License : MIT License
Author : nz_prism
Desc page : https://github.com/nz-prism/RPG-Maker-MZ/blob/master/FramelessChoiceList/js/plugins/FramelessChoiceList.js
Download Page : https://raw.githubusercontent.com/nz-prism/RPG-Maker-MZ/master/FramelessChoiceList/js/plugins/FramelessChoiceList.js
File name : FramelessChoiceList.js
Help of plugin :
* @target MZ * @plugindesc Makes the choice window frameless. * @author nz_prism * @url https://github.com/nz-prism/RPG-Maker-MZ/blob/master/FramelessChoiceList/js/plugins/FramelessChoiceList.js * * @help FramelessChoiceList.js * ver 1.1.1 * * [History] * 06/26/2021 1.0.0 Released * 06/26/2021 1.1.0 Added a plugin parameter Y Axis Offset. * 01/22/2023 1.1.1 Made the window position reflected. * * This plugin makes the choice window frameless and display black * backs with gradation for choices. It also display selection * images at the choice headers, which switch active/deactive * images. If you don’t use images, cursor flash will be used * instead. You can configure the window width and item height * with the plugin parameters. * * * This plugin is released under MIT license. * https://opensource.org/licenses/mit-license.php * * * @param windowWidthPlus * @text Window Width Plus * @desc The value added to the choice window width. * @default 480 * @type number * @min -10000 * * @param lineHeight * @text Line Height * @desc The height for the choice items. * @default 36 * @type number * @min 1 * * @param rowSpacing * @text Row Spacing * @desc The height allowance for the choices. * @default 4 * @type number * @min 0 * * @param offsetY * @text Y Axis Offset * @desc The distance between the message and the choice windows. * @default 24 * @type number * @min 0 * * @param useSelectionImage * @text Use Selection Image * @desc If true, it uses selection images. If false, cursor will be used. * @default true * @type boolean * * @param activeSelectionImage * @text Active Selection Image * @desc An image to be shown when the choice is selected. * @default Selection_Active * @type file * @dir img/system * @parent useSelectionImage * * @param deactiveSelectionImage * @text Deactive Selection Image * @desc An image to be shown when the choice is NOT selected. * @default Selection_Deactive * @type file * @dir img/system * @parent useSelectionImage * * @param imageAllowance * @text Image Allowance * @desc Width between the image and the text. * @default 8 * @type number * @min 0 * @parent useSelectionImage *