How to make timer countdown?

Hello, I’m trying to make countdown from 2min to 0, and from 1 min to 0 in infinite loop. So it goes 2min to 0, then 1min to 0, then 2, then 1 and so on. I am new to unreal engine so a little bit more detailed explanation would help. I only managed to make it go from 2min to 0. Thanks.

Like this:

This seems to work pretty well:

  • when the timer has run through the duration, it fires an event
  • the event flips a Boolean value and restart the timer
  • when the timer is restarted, the Boolean is used to choose a new value from Selection
  • tick reads the remaining time off a timer

Do tell if anything else here is unclear.

Okay so it works, I’m just not sure how to turn it into min and sec so you can see them for example 02:00 or 01:35 or whatever.

331372-screenshot-3.jpg

( you have to make it a float ).