From 080d74fec1b65a5e5ba29143d8a70fc68902eb5a Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Tue, 8 Mar 2022 16:53:11 +1100 Subject: [PATCH] Fix T86743: io_anim_camera addon needs updating Update path for the DOF distance, allow properties to be RNA paths. --- io_anim_camera.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io_anim_camera.py b/io_anim_camera.py index 7973bec2d..92948f585 100644 --- a/io_anim_camera.py +++ b/io_anim_camera.py @@ -25,7 +25,7 @@ def write_cameras(context, filepath, frame_start, frame_end, only_selected=False 'lens', 'shift_x', 'shift_y', - 'dof_distance', + 'dof.focus_distance', 'clip_start', 'clip_end', 'display_size', @@ -60,7 +60,7 @@ def write_cameras(context, filepath, frame_start, frame_end, only_selected=False for obj, obj_data in cameras: fw("data = bpy.data.cameras.new(%r)\n" % obj.name) for attr in data_attrs: - fw("data.%s = %s\n" % (attr, repr(getattr(obj_data, attr)))) + fw("data.%s = %s\n" % (attr, repr(obj_data.path_resolve(attr)))) fw("obj = bpy.data.objects.new(%r, data)\n" % obj.name) -- GitLab