Import_3ds: Remove None from object list #104783

Merged
Sebastian Sille merged 23 commits from :main into main 2023-07-27 18:11:43 +02:00
Showing only changes of commit 1928cdf967 - Show all commits

View File

@ -1321,7 +1321,7 @@ def make_object_node(ob, translation, rotation, scale, name_id):
if parent is None or (parent.name not in name_id): if parent is None or (parent.name not in name_id):
ob_pos = translation[name] ob_pos = translation[name]
ob_rot = rotation[name] ob_rot = rotation[name]
ob_size = scale[name] ob_size = ob.scale
else: # Calculate child position and rotation of the object center, no scale applied else: # Calculate child position and rotation of the object center, no scale applied
ob_pos = translation[name] - translation[parent.name] ob_pos = translation[name] - translation[parent.name]