I am building a sweeping wing aircraft and I want to make it so that after the throttle goes past 80 the wings begin to gradually sweep I know how to do it (Throttle>80) but when I implement it past throttle 80 it automatically sweeps all the way which is not what I want. the problem for me is I am pretty armature to funky trees.
@griges i will try it
Sorry, a bit spam
You can actually set the speed in built in settings
No need to smooth it
(Throttle>0.8)?((Throttle-0.8)*5):0
Will do the job
Use this one instead (Throttle>0.8)?smooth(((Throttle-0.8)*5),0.2):0
It didn't work lol
@griges thanks for the help
@griges slowly, and i have i think 45 degrees
Also started learning FT a week ish ago,
Looking for some new knowledge
To clarify, do you mean to sweep the wing respective to the throttle?
Or just want it to sweep after 80% but slowly?
If just sweeping according to throttle maybe you can try input
(clamp(Throttle,0.8,1))/(how many degrees your hinge or rotator moves)
If just time u can just use
smooth(x,(rate per second)
Correct me if im wrong
I just got back from mic doanalds and I don’t know how to do that. So I’m sorry
@Yeitcatplanes I have that implemented, and it does not work as I want it to but I want it so that the more throttle the further back the wings sweep if that makes sense.
You do Throttle>0.80%