unholy-maiden/js/plugins/Unit03_Custom_windows.js
2025-12-18 09:44:14 -06:00

27 lines
No EOL
603 B
JavaScript

//=============================================================================
// PB_windows.js v1.0
//=============================================================================
//-----------------------------------------------------------------------------
// Window_Base
//
// The superclass of all windows within the game.
/*:
* @target MZ
* @plugindesc バトルメッセージ背景透過
* @author PB
*
* @help バトルメッセージを透過する
*
*/
(() => {
"use strict";
Window_BattleLog.prototype.backPaintOpacity = function() {
return 0;
};
//動作コード
})();