playMaker

Author Topic: Asking for help on how to make a GUI Button dissapear after a few seconds pass  (Read 1577 times)

Mysterian

  • Playmaker Newbie
  • *
  • Posts: 9
I have a GUI Button in my scene.  The button appears in my scene when it initially loads.  I would like this button to disappear approximately 5 seconds after the scene has started loading.  I am familiar with using the delay in Sent Event to make it load later on, but was wondering if there was a way to do the same thing backwards.  Thank you.

redikann

  • Full Member
  • ***
  • Posts: 174
You can make an animated variable(Integer) that goes from 1 to 0 overs 5 seconds. Feed that variable into a Set Gui Alpha action and then exit the state with an Event prompt.

Mysterian

  • Playmaker Newbie
  • *
  • Posts: 9
Thank you!  I managed to find a workaround using SEQUENCE EVENT as well.  This suits my needs!  Much appreciated!