Fixed small error in python script

This commit is contained in:
Axel 2023-03-17 09:59:05 +01:00 committed by bernat
parent 5487e17f60
commit 8d8d53c3e5
1 changed files with 10 additions and 10 deletions

View File

@ -8,30 +8,30 @@ import json
# convert PropSize to string
def size_to_str(prop_size):
if args.size == unreal.PropSize.TINY:
if prop_size == unreal.PropSize.TINY:
return 'Tiny'
elif args.size == unreal.PropSize.SMALL:
elif prop_size == unreal.PropSize.SMALL:
return 'Small'
elif args.size == unreal.PropSize.MEDIUM:
elif prop_size == unreal.PropSize.MEDIUM:
return 'Medium'
elif args.size == unreal.PropSize.BIG:
elif prop_size == unreal.PropSize.BIG:
return 'Big'
elif args.size == unreal.PropSize.HUGE:
elif prop_size == unreal.PropSize.HUGE:
return 'Huge'
else:
return 'Medium'
# convert string to PropSize
def str_to_size(prop_size):
if args.size == "tiny":
if prop_size == "tiny":
return unreal.PropSize.TINY
elif args.size == "small":
elif prop_size == "small":
return unreal.PropSize.SMALL
elif args.size == "medium":
elif prop_size == "medium":
return unreal.PropSize.MEDIUM
elif args.size == "big":
elif prop_size == "big":
return unreal.PropSize.BIG
elif args.size == "huge":
elif prop_size == "huge":
return unreal.PropSize.HUGE
else:
return unreal.PropSize.MEDIUM