2.5.2 Frame Rotation - Syntax Logic

Hello,

When Posting frame rotation into a macro as follows - the syntax logic is not uniform.

"frame_rotation +05 [Enter]"   - this will give you 05 increments on frame rotation progressing in the positive direction.

"frame_rotation -05 [Enter]"    - this will send you to -05 in in the frame rotation index not progressing in any direction.

Have I missed something?

 

 

Parents
  • the thing is that some parameters (including Frame_Assembly) have a negative and a positive side in a range, e.g. Pan goes from -270 to +270. to tell the console to use absolute values we use Pan 90 or Pan -90. so when we want to use relative commands like you did, Eos needs to be told differently, because your first instinct of using -05 is already doing something else.
    both commands for relative behaviour begin with +. so what you are looking for is Frame_Rotation +05 and Frame_Rotation +- 05 (yes, both a plus and a minus)
Reply
  • the thing is that some parameters (including Frame_Assembly) have a negative and a positive side in a range, e.g. Pan goes from -270 to +270. to tell the console to use absolute values we use Pan 90 or Pan -90. so when we want to use relative commands like you did, Eos needs to be told differently, because your first instinct of using -05 is already doing something else.
    both commands for relative behaviour begin with +. so what you are looking for is Frame_Rotation +05 and Frame_Rotation +- 05 (yes, both a plus and a minus)
Children
Related