diff --git a/io_anim_camera.py b/io_anim_camera.py index cf903de0fcd7f61c5fcfc127e69a59d53b1edb0f..d426baacedef0de9799246efffc5cb5c56f088bc 100644 --- a/io_anim_camera.py +++ b/io_anim_camera.py @@ -87,9 +87,9 @@ def writeCameras(context, filepath, frame_start, frame_end, only_selected=False) fw("obj = cameras['%s']\n" % obj.name) matrix = obj.matrix_world.copy() - fw("obj.location = %r\n" % matrix.to_translation()[:]) - fw("obj.scale = %r\n" % matrix.to_scale()[:]) - fw("obj.rotation_euler = %r\n" % matrix.to_euler()[:]) + fw("obj.location = %r, %r, %r\n" % matrix.to_translation()[:]) + fw("obj.scale = %r, %r, %r\n" % matrix.to_scale()[:]) + fw("obj.rotation_euler = %r, %r, %r\n" % matrix.to_euler()[:]) fw("obj.keyframe_insert('location')\n") fw("obj.keyframe_insert('scale')\n")