Notifications
Clear all

[Closed] instance postion controller

Hi, hopefully this is a real easy one. How can i instance the position controller of one object to another. I know how to do it by hand, but not with script.

$[1].pos.controller = copy $[2].pos.controller --this works but isn't a instance.
 $[1].pos.controller = instance $[2].pos.controller -- this throws an error
 

thanks, David

2 Replies
1 Reply
(@denist)
Joined: 2 years ago

Posts: 0

just $[1].pos.controller = $[2].pos.controller

d’oh. I knew it was easy :-D. But i could have sworn i had tried that, too and got errors. But now it works fine.