diff --git a/io_scene_fbx/export_fbx_bin.py b/io_scene_fbx/export_fbx_bin.py index a5bae51279e7e18d072523a25e1003c1913450b1..d8e7cd1b437f4729f59663f0983bb199eb265efd 100644 --- a/io_scene_fbx/export_fbx_bin.py +++ b/io_scene_fbx/export_fbx_bin.py @@ -1997,7 +1997,8 @@ def fbx_animations(scene_data): 'show_only_shape_key', 'use_shape_key_edit_mode', 'active_shape_key_index', ) for p in props: - setattr(ob_to, p, getattr(ob_from, p)) + if not ob_to.is_property_readonly(p): + setattr(ob_to, p, getattr(ob_from, p)) for ob_obj in scene_data.objects: # Actions only for objects, not bones!