Change TP Color In Window_BattleStatus

将颜色改为 rgba(255, 255, 0, 1)
main
xian18 2 years ago
parent e968ca57c7
commit 482b3d0000
Signed by: SaltedFish
GPG Key ID: B0C26448E9EF40CA

@ -780,6 +780,10 @@ Window_BattleStatus.prototype.drawActorTp = function (actor, x, y, width) {
this.drawText(actor.tp, x + 50, y, 64, "left");
};
Window_BattleStatus.prototype.tpColor = function (actor) {
return "rgba(255, 255, 0, 1)";
};
Window_BattleStatus.prototype.drawActorAtbGaugeVertical = function (actor, wx, wy, wh) {
wh = wh || 96;
if (!actor) return;

Loading…
Cancel
Save