I want to combine pitch and roll inputs on one control surface,but i don't know how...
Can someone help me?
Multiple control surfaces
12.5k SuperSuperTheSylph
3.1 years ago
I want to combine pitch and roll inputs on one control surface,but i don't know how...
Can someone help me?
why are you guys so confused? It's literally as simple as
Pitch*1+Roll*-1
(depending on the side, if it's on the left side, use -, if it's on the right side, just use it do it normally)@ZeroWithSlashedO Thanks dude, seriosuly! I was looking for this to apply it on my Tomcat, really, thanks!
@ZeroWithSlashedO THANK UUUU
How about this:
clamp(Pitch+Roll/3,-1,1)
@LinearAerospike still not working :(
@SuperSuperTheSylph Uh, try this: clamp(Pitch/1.5+Roll/3,-1,1)
@LinearAerospike
spoke too soon
it's not working
control surfaces doesn't move
tnx
For the input you can use: clamp(Pitch/PitchMix+Roll/RollMix,-1,1)
PitchMix: The “ratio” of pitch
RollMix: The “ratio” of roll
You may have to change the sign if you mirror it.