@PlaneFlightX ok
@Hiimakeplanes Oh, that's the clamp01. This code doesn't actually need it at all, so remove the clamp01 from the expression and make it (GearDown ? Yaw : 0).
(GearDown ? Yaw : 0)
@PlaneFlightX how do I use this for yaw? It only goes right with clamp01(GearDown ? Yaw : 0)
clamp01(GearDown ? otherCode : 0) That's one way to do it. otherCode is whatever code you want to put in it.
clamp01(GearDown ? otherCode : 0)
otherCode
@PlaneFlightX ok
@Hiimakeplanes Oh, that's the clamp01. This code doesn't actually need it at all, so remove the clamp01 from the expression and make it
(GearDown ? Yaw : 0)
.@PlaneFlightX how do I use this for yaw? It only goes right with
clamp01(GearDown ? Yaw : 0)
clamp01(GearDown ? otherCode : 0)
That's one way to do it.
otherCode
is whatever code you want to put in it.