Profile image

How do you make a flap only move 1 direction

229 Onixbaron  2.2 years ago

I'm currently making a plane that has flaps it works as intended but flaps can also move the opposite direction how do I stop that

  • Log in to leave a comment
  • Profile image
    2,954 Sewander

    VTOL<0 ? VTOL : 0
    For VTOL input,I use it

    2.2 years ago
  • Profile image

    @IICXLVIICDLXXXIIIDCXLVII it can be easier if you have just that in it, but I for example make long ass XML codes for inputs so it's easier to have something that works good not in it

    2.2 years ago
  • Profile image
    11.6k JesusChrist

    @ollielebananiaCFSP I find it easier to do by input.

    2.2 years ago
  • Profile image

    @IICXLVIICDLXXXIIIDCXLVII no need to clamp, ou can also just change the min and max input in overload to 0

    2.2 years ago
  • Profile image

    Set the min to 0 in the inputcontroller. Or max whichever direction you’d rather have the vtol slider move

    +1 2.2 years ago
  • Profile image
    229 Onixbaron

    @IICXLVIICDLXXXIIIDCXLVII thank you

    +1 2.2 years ago
  • Profile image
    11.6k JesusChrist

    clamp(VTOL, -1, 0)

    Assuming the flaps use VTOL as the input.

    2.2 years ago