Notifications
Clear all

[Closed] request

how can i find that a object like a cube how much lockally rotated from previous frame?

1 Reply

check out the “at Time” command in the MaxScript Help file… will give you values at specific slider times…

If you have an object selected… this will give you the rotation difference between frame 50 and 51…

(
 local R1
 local R2
 at time 50f ( R1=$.rotation )
 at time 51f ( R2=$.rotation )
 local RotDif = R2 - R1
 )