Notifications
Clear all
[Closed] Copy mov and rot from a frame
Jun 03, 2003 12:42 pm
How to cop a move x,y,z och a rotation of an object from a frame.
ex:
I have a object on frame 20: x=10, y=-1.20, z=0
and I want to copy this xyz to a frame 30 for the same object.
3 Replies
Jun 03, 2003 12:42 pm
I’m assuming you need to do this with script, since you’re posting in here. If you want to copy position:
at time 20 obj_pos = $.pos
at time 30 with animate on $.pos = obj_pos
or to copy rotation,
at time 20 obj_rot = $.rotation
at time 30 with animate on $.rotation = obj_rot
Jun 03, 2003 12:42 pm
You mean like a custom attribute? You just call it as a property of the object:
at time 20 obj_attrib = $.some_attribute
at time 30 $.some_attribute = obj_attrib