How can I make a control surfaces only work in one direction, like for example it only activates when pulling up the pitch but not holding it down
How can I make a control surfaces only work in one direction, like for example it only activates when pulling up the pitch but not holding it down
@overlord5453 thanks, I just posted a new post featuring it
@MsMuseumJanitor use
clamp01()
orclamp()
.How?
clamp01(Putch)
will only give 0 to 1 outputclamp(Pitch,0,1)
also gives 0 to 1, but this one can be customized likeclamp(Pitch,-0.6,1)
gives output of -0.6 to 1.@overlord5453 please help