How can i make a G-Limiter? If i dogfight my aircrafts are coming with mach 2, 40gs in the 2 circle how can i make a g limiter?
How can i make a G-Limiter? If i dogfight my aircrafts are coming with mach 2, 40gs in the 2 circle how can i make a g limiter?
I just made a post about this, but try adding this to the fcs you're using for pitch.
clamp(inverselerp(x,y,TAS),0.1,1)
x=max airspeed you want 1/10th deflection (hence 0.1)
y= min airspeed you want full deflection (1)
This won't cause any weird oscillations like some other G limiting strings can.
@Eggplant both of us have 10.4k points I just realised lol
@Eggplant okay thanks i will try
Simplest way would be to add something like & VerticalG < 9 to the input of each control surface. I've never done one myself so I don't know how smooth it would be but in combination you could incorporate a scale factor based on airspeed so the control surfaces deflect less when you're going faster.