Profile image

How to double input?

1,425 WeregarurumonGaruru  1.9 years ago

I want to use a rotator can use both pitch and roll

  • Log in to leave a comment
  • Profile image
    46.6k PlaneFlightX

    For something like a control surface you want clamp(Pitch + Roll, -1, 1). It allows both to function normally but stops combinations from exceeding -1 or 1.

    +1 1.9 years ago
  • Profile image
    28.3k goboygo1

    Another option
    (Pitch + Roll) / 2
    That should work and only reach the limit with full roll and pitch.

    +1 1.9 years ago
  • Profile image
    69.0k MrCOPTY

    Pitch+Roll
    And Maybe You Want To Use "*0.5" For Small Values

    +1 1.9 years ago
  • Profile image
    13.1k Grob0s0VBRa

    Just put
    Pitch + Roll
    As input.

    +1 1.9 years ago