Skip to content

Commit

Permalink
Apply Retard fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Melioli committed Jan 8, 2024
1 parent 3c6193b commit 2922188
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tools/convertGIPC.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def ScaleModel():
bpy.ops.transform.resize(value=(0.1, 0.1, 0.1))
elif 1 < dimensions.z < 3:
pass # Do nothing
elif dimensions.z < 0:
elif dimensions.z < 1:
bpy.ops.transform.resize(value=(100, 100, 100))

ob.select_set(False)
Expand Down
2 changes: 1 addition & 1 deletion Tools/convertHI3PC.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def ScaleModel():
bpy.ops.transform.resize(value=(0.1, 0.1, 0.1))
elif 1 < dimensions.z < 3:
pass # Do nothing
elif dimensions.z < 0:
elif dimensions.z < 1:
bpy.ops.transform.resize(value=(100, 100, 100))

ob.select_set(False)
Expand Down

0 comments on commit 2922188

Please sign in to comment.