forked from SilverStudioGames/WTS
Bug fix
* Fixed whitespace calculation for non-wardrobe elements * Fixed an issue with floats when expecting an int
This commit is contained in:
parent
027f237606
commit
43b1954263
@ -25,10 +25,10 @@ init python:
|
||||
size = surf.get_size()
|
||||
box = tuple(surf.get_bounding_rect())
|
||||
|
||||
if size[0] != 1010:
|
||||
if "/clothes/" in path and size[0] != 1010:
|
||||
ratio = size[0] / 1010
|
||||
box = tuple(v/ratio for v in box)
|
||||
whitespace_dict[path] = box
|
||||
whitespace_dict[path] = tuple(map(int, box))
|
||||
return box
|
||||
|
||||
def crop_image_zoom(path, xsize, ysize, grayscale=False):
|
||||
|
Loading…
Reference in New Issue
Block a user