Copy and past controller

In scene present two box
The $box01 is animation(position,rotation, scale)
The $box02 is static.
How I can copy controller from $box01 and past it on $box02 7

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
Any's picture

Barigazy, Thank you

Barigazy, can you take me reference in MaXScript Help where explain
that string " b2[3][i].track "

barigazy's picture

Read this

Read this topic
http://www.cgplusplus.com/online-reference/maxscript-reference/source/co...
Or you can see in TrackView

Also in these thread you can find some useful infos :)
http://www.scriptspot.com/forums/3ds-max/general-scripting/dynamic-dimen...

bga

barigazy's picture

like this

b1 = $Box001
b2 = $Box002
--instance controllers
for i = 1 to 3 do b2[3][i].track = b1[3][i].track
--copy controllers
for i = 1 to 3 do b2[3][i].track = copy b1[3][i].track

bga

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.