Is there a funky tree input where when (n) percent in throttle is reached, the rotator returns to zero? If so how do you type it? I am trying to make a custom jet nozzle. Thank you in advance!
Is there a funky tree input where when (n) percent in throttle is reached, the rotator returns to zero? If so how do you type it? I am trying to make a custom jet nozzle. Thank you in advance!
That’s understandable but you still helped me a ton! :) @nagisa
@Aldriech
I was doing other work, so I was late to notice. And sorry that the explanation didn't go well.
Anyway, it's good that the problem seems to be solved.
( sorry if you misunderstood. I'm not good at English)
I was wrong lol but I managed to do it by reading Snowflake0s’s guide on FT. I did it by typing in (Throttle>=0.91?1:0) @nagisa. Thank you so much for teaching me a smidge of FT! I really appreciate your help. :))
I see, so if I want to reverse the operation I just type in (Throttle>=1?0.91:Throttle)?@nagisa
@Aldriech
The above FT is
(
condition
?true time
:false time
).Therefore, you can reverse the operation by swapping the true and false parts or swapping the inequality sign used in the condition.
Last question, does the same code also works in reverse? @nagisa (i.e instead of making it zero, if the (n) percent is reached it activates the engine.)
Ahhh I see, I see! Thank you again! @nagisa
@Aldriech
The throttle input is between 0~1, not 0~100, so replace the 80 part with 0.8. I think it will work out well with
Here is the link @nagisa
https://www.simpleplanes.com/a/3293iy/PLA-12
Sorry to make you fix something but I hope you can fix this ^^;;
Hmmm, I maybe doing something wrong here but the hinge rotator didn’t reset. Am I doing something wrong? I’ll give you the link to the jet I am working on just a moment. if you have free time. :) @nagisa
Thank you very much! @nagisa
(Throttle>=
Any number
?0:Throttle)