Notifications
Clear all

[Closed] copy/paste base

How can I copy one base to the other using maxscript. doing

objectA.baseobject = copy objectB.baseobject doesn’t seem to work correctly.

I tried objectA[4] = copy objectB[4]
but that didn’t seem to work properly either. Hopefully someone can help out.

Thank you

1 Reply

I use it like this for years:

$[2].baseobject = copy $[1].baseObject

I usually want to make them instances so I use

$[2].baseobject = $[1].baseObject

What result are you getting?
What max version are you using?