Model.AE_Unrealize#
- Model.AE_Unrealize(collection)#
Unrealize attachments
- Parameters:
collection (Collection) – The collection containing the attachment entities to unrealize.
Example#
Unrealize all attachments in the model#import hm import hm.entities as ent model = hm.Model() attachment_collection = hm.Collection(model, ent.Attachment) model.AE_Unrealize(collection=attachment_collection)