@Sumrandomdud Try with abs(VTOL) to always have a positive number even with a negative VTOL value.
You can use clamp(x, min, max) to limit output value between min and max of your choice, or 0 and 1 using clamp01(x) in case you need it too
@Sumrandomdud Try with abs(VTOL) to always have a positive number even with a negative VTOL value.
You can use clamp(x, min, max) to limit output value between min and max of your choice, or 0 and 1 using clamp01(x) in case you need it too