diff --git a/Objects/Converters/ConverterRevit/ConverterRevitShared/PartialClasses/ConvertDirectShape.cs b/Objects/Converters/ConverterRevit/ConverterRevitShared/PartialClasses/ConvertDirectShape.cs index e71083bb48..020c67c8f6 100644 --- a/Objects/Converters/ConverterRevit/ConverterRevitShared/PartialClasses/ConvertDirectShape.cs +++ b/Objects/Converters/ConverterRevit/ConverterRevitShared/PartialClasses/ConvertDirectShape.cs @@ -185,6 +185,7 @@ public ApplicationObject DirectShapeToNative(DirectShape speckleDs, ToNativeMesh if (existingObj != null && existingObj is DB.DirectShape existingDS) // if it's a directShape, just update { existingDS.SetShape(converted); + SetInstanceParameters(existingDS, speckleDs); appObj.Update(status: ApplicationObject.State.Updated, createdId: existingDS.UniqueId, convertedItem: existingDS); return appObj; }