How to make fade in & fade out with panels
-
Hi, i search how to make fade in & fade out with panels (so that panels appear gradually rather than abruptly) Someone would know how to do? thank you
-
@Lumi283 You can use the "Global Animator" to this
const var ScriptPanel1 = Content.getComponent("ScriptPanel1"); // USING THE GLOBAL ANIMATOR inline function onFadeInOutControl(component, value) { ScriptPanel1.fadeComponent(value, 1000); }; Content.getComponent("FadeInOut").setControlCallback(onFadeInOutControl);