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
VTOL<0 ? VTOL : 0 For VTOL input,I use it
@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
@ollielebananiaCFSP I find it easier to do by input.
@IICXLVIICDLXXXIIIDCXLVII no need to clamp, ou can also just change the min and max input in overload to 0
Set the min to 0 in the inputcontroller. Or max whichever direction you’d rather have the vtol slider move
@IICXLVIICDLXXXIIIDCXLVII thank you
clamp(VTOL, -1, 0) Assuming the flaps use VTOL as the input.
VTOL<0 ? VTOL : 0
For VTOL input,I use it
@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
@ollielebananiaCFSP I find it easier to do by input.
@IICXLVIICDLXXXIIIDCXLVII no need to clamp, ou can also just change the min and max input in overload to 0
Set the min to 0 in the inputcontroller. Or max whichever direction you’d rather have the vtol slider move
@IICXLVIICDLXXXIIIDCXLVII thank you
clamp(VTOL, -1, 0)
Assuming the flaps use VTOL as the input.