Notifications
Clear all
[Closed] copy/paste base
Mar 07, 2014 6:49 pm
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
Mar 07, 2014 6:49 pm
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?