Author Topic: Multiple triggers for a single animation?  (Read 1988 times)

8bitsdeep

  • Full Member
  • ***
  • Posts: 49
    • View Profile
Multiple triggers for a single animation?
« on: November 06, 2017, 02:11:45 PM »
I'd like to trigger this animation on Transition.StartLayout and Transition.EndNavigation.

Code: [Select]
local t_fade_out = { when = Transition.EndNavigation, property = "alpha", start = 255, end = 0, time = 300, delay = 1000 }
Is this possible? Or do I just have to make separate animations for each trigger?