Profile image

Funky Trees Help

234 AerospaceGuy36  1.9 years ago

I was wondering how to make it so that when my plane touches down, some air brakes deploy automatically at any throttle below say 25% percent. Any help is appreciated, thanks in advance!

  • Log in to leave a comment
  • Profile image

    Ok, thanks. I’ll mess around w/ it and I’ll let u know how it goes@TheFlightGuySP

    1.9 years ago
  • Profile image

    @AerospaceGuy36 You could try: (AltitudeAgl= whatever your elevation above the ground is while on the ground)&(Throttle<0.25).
    This may or may not work.

    1.9 years ago
  • Profile image

    Ok, thanks! I don’t know much about funkytrees so how would I write the 2 functions together?@TheFlightGuySP

    1.9 years ago
  • Profile image

    @AerospaceGuy36 No. You could mess around with AltitudeAgl data to see what happens. (AltitudeAgl= whatever your elevation above the ground is while on the ground)

    1.9 years ago
  • Profile image

    Thanks, does the clamp function make it to where they only deploy on the ground?
    @TheFlightGuySP

    1.9 years ago
  • Profile image

    You could try clamp(Throttle, 0, 0.25) or Throttle<0.25.
    Edit: this works for the throttle portion of the code, not the touchdown.

    1.9 years ago