From 03db6722992d491de395a441151f1d88a68d0d63 Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Fri, 14 Jul 2023 23:58:17 +0100 Subject: [PATCH] Bug fix * Fixed Dynamic Clothes icon size --- game/scripts/doll/clothes_dynamic.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/scripts/doll/clothes_dynamic.rpy b/game/scripts/doll/clothes_dynamic.rpy index c59b5b5a..ac13e3a0 100644 --- a/game/scripts/doll/clothes_dynamic.rpy +++ b/game/scripts/doll/clothes_dynamic.rpy @@ -179,7 +179,7 @@ init python: if y+h > hmax: y = hmax-h - return Transform(Fixed(*[i[1] for i in sprites], fit_first=True), crop=(x, y, w, h)) + return Transform(Fixed(*[i[1] for i in sprites], fit_first=True), crop=(x, y, w, h), size=(96, 96), fit="contain", align=(0.5, 0.5)) def clone(self): """Creates a clone of this cloth object. Since it requires a parent object it should be used internally only to avoid object depth issue."""