Vitus
Resource contributor
- Messages
- 1,480
- Country
-
...apparently you don't even need the animation any more for visibility conditions, if you use the template style. This is from one of the Asobo devs:
With that came the information that the visibility bug is indeed something on the max side of things, so we should be fine.
you don't need an animation if you use the new template style stuff and I really recommend it. For visibility especially this is really easy, look at Visibility.xml, they can be used like this for example:
Code:<Component ID="Some_Unique_Id" Node="Node_Name_To_Hide_Here"> <UseTemplate Name="ASOBO_GT_Visibility_Sim"> <VISIBILITY_SIMVAR>some simvar</VISIBILITY_SIMVAR> <VISIBILITY_SIMVAR_UNITS>some units</VISIBILITY_SIMVAR_UNITS> </UseTemplate> </Component>
Alternatively you can write it entirely without templates (just replace the stuff between # with something sensible): <Component ID="Some_Unique_Id" Node="Node_Name_To_Hide_Here">
Same with code, etc. You can also create your own templates in the same way we do.Code:<Visibility> <Parameter> <Sim> <Variable>#VISIBILITY_SIMVAR#</Variable> <Units>#VISIBILITY_SIMVAR_UNITS#</Units> <Scale>#VISIBILITY_SIMVAR_SCALE#</Scale> <Bias>#VISIBILITY_SIMVAR_BIAS#</Bias> </Sim> </Parameter> </Visibility>
With that came the information that the visibility bug is indeed something on the max side of things, so we should be fine.