Hello,
I am currently building a plane and i need a way to detach a detacher when certain conditions are met. is there a way to activate activation group at, for example, 100m/s of IAS? i tried setting detacher input to IAS>99 but it doesn't seem to work.
Any ideas?
activation group activating at certain inputs
2 HexagonalCube44
1.2 years ago
IAS >= 100 ? 1 : -1
Should work
Hi.
First of all,
IAS>=100
is better, sinceIAS
could be99.5
and the detacher could activate at that airspeed.Second, detachers don't accept inputs, but only activation groups. However, they accept conditions in their activation group input (Remember: A condition has a value that's either
true
orfalse
). For example, you can set the activation group toIAS>=100
and it'll detach the desired object for you at 100m/s IAS.I've tried with
IAS>=10
and it worked. Hope this works for you too (If not, it's a bug and I can't do anything about it, but you may can).Have a nice day!