Notifications
Clear all
[Closed] Copy transform with PRS animation?
Sep 25, 2013 6:54 pm
Is there a simple way to just copy a transform and put it on a dummy (point helper) bringing across any transform animation that was on the (copied from) node.
$ --(the node with animation)
point transform:(copy $.transform)
2 Replies
Sep 25, 2013 6:54 pm
Probably have to instance (or set the controller equal to a copy of the controller) the controllers and then make them unique. AFAIK, transform grabs the state of the object at the current frame, not copy the controllers.
Same as
Point Position:(copy $.position)
isn’t the same as
Point.position.controller = copy $.position.controller
-Eric
EDIT: That is the way to go:
Obj2.transform.controller = copy Obj1.transform.controller
It will copy the transform and all children controllers and keys over.