Is it possible to fade guis? tint.w, shadow, outline, alpha and color don’t seem to work, what should I use to make a GUI fade in/out?
Thanks!
Solution: gui.animate(guinode, “color.w”, 3, gui.EASING_LINEAR)
Is it possible to fade guis? tint.w, shadow, outline, alpha and color don’t seem to work, what should I use to make a GUI fade in/out?
Thanks!
Solution: gui.animate(guinode, “color.w”, 3, gui.EASING_LINEAR)
Color (or color.w) should work. I just tested it an it worked as expected.
gui.animate(gui.get_node("box"), "color.w", 0, gui.EASING_LINEAR, 3)
Thank you, it works!