Fix T86743: io_anim_camera addon needs updating

Update path for the DOF distance, allow properties to be RNA paths.
This commit is contained in:
Campbell Barton 2022-03-08 16:53:11 +11:00
parent fbb5111e15
commit 080d74fec1
Notes: blender-bot 2023-02-14 18:39:08 +01:00
Referenced by issue #86743, io_anim_camera.py addon Needs Updating!
1 changed files with 2 additions and 2 deletions

View File

@ -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)