diff --git a/korman/exporter/animation.py b/korman/exporter/animation.py index a421edf..e335b0c 100644 --- a/korman/exporter/animation.py +++ b/korman/exporter/animation.py @@ -397,7 +397,7 @@ class AnimationConverter: def convert_scale_keyframe(scale): # Scale: very likely to cause issues. - return (a * b for a, b in zip(adjust_scale, scale)) + return [a * b for a, b in zip(adjust_scale, scale)] convert_pos = convert_pos_keyframe convert_rot = convert_rot_keyframe diff --git a/korman/exporter/physics.py b/korman/exporter/physics.py index 5af16ab..202d527 100644 --- a/korman/exporter/physics.py +++ b/korman/exporter/physics.py @@ -93,7 +93,7 @@ class PhysicsConverter: if so.sim is None: simIface = self._mgr.add_object(pl=plSimulationInterface, bl=bo) - physical = self._mgr.add_object(pl=plGenericPhysical, bl=bo, name=bo.name) + physical = self._mgr.add_object(pl=plGenericPhysical, bl=bo) simIface.physical = physical.key physical.object = so.key