diff --git a/mixer/blender_data/attributes.py b/mixer/blender_data/attributes.py index 226f17f..4c4d62f 100644 --- a/mixer/blender_data/attributes.py +++ b/mixer/blender_data/attributes.py @@ -198,7 +198,7 @@ def write_attribute( # f"Attempt to write to non-existent attribute {bl_instance}.{key} : skipped" return - if not prop.is_readonly: + if not prop.is_readonly and not (isinstance(parent, bpy.types.Collection) and key == 'name'): try: setattr(parent, key, value) except TypeError as e: