I’m trying to assign a different ObjectId attribute to some POPs in order to be able to get them back after a Merge POP. I can see the attribute being correct after the merge using a POPtoDAT, but it seems that if the connectivity of the POPs being merged is different (I’m merging unconnected points with linestrips) I can no longer get them back using a deletePOP.
mergePOPbug.toe (6.7 KB)
Thanks for the feedback!
So the issue is that when the delete POP works on an input with primitives, it always removes all “unused” points, meaning points with no primitive associated.
When the input has only points without primitives (your second example) it leaves the remaining points alone.
So for the third example above if you switch the circle to Point Primitives that’s one workaround and you can always remove the point primitives afterwards (convert POP keep points delete primitives)
Otherwise I’ll put as an RFE to add an option to leave “unused” points when the input has primitives.
Good to know that’s how it works. Thank you Vincent!