I want to use a rotator can use both pitch and roll
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.
clamp(Pitch + Roll, -1, 1)
Another option (Pitch + Roll) / 2 That should work and only reach the limit with full roll and pitch.
Pitch+Roll And Maybe You Want To Use "*0.5" For Small Values
Just put Pitch + Roll As input.
Pitch + Roll
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.Another option
(Pitch + Roll) / 2
That should work and only reach the limit with full roll and pitch.
Pitch+Roll
And Maybe You Want To Use "*0.5" For Small Values
Just put
Pitch + Roll
As input.