io_scene_3ds: Added imperial unit length measure #104805

Merged
Sebastian Sille merged 58 commits from :main into main 2023-07-31 00:39:53 +02:00
1 changed files with 1 additions and 1 deletions
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):
ob_pos = translation[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
ob_pos = translation[name] - translation[parent.name]