I have a list of objects in one document (OptimizedDoc) that I want to copy over into another (doc) with materials and tags. My current code is:
tempDoc = c4d.documents.IsolateObjects(OptimizedDoc, Transfer_Objects)
c4d.documents.MergeDocument(doc, tempDoc, c4d.SCENEFILTER_NONE)
I get - TypeError: unable to convert c4d.documents.BaseDocument to @net.maxon.interface.url-C
The documentation says the second spot on Merge Document should be the file to merge into doc, but I think the way I'm presenting it is incorrect. Am I supposed to be pointing to a file location in memory? Thanks!