Skip to content

Timer Get Info

Read timing and state information from a Timer.

Parameters

Parameter Description
Timer The Timer variable to read.
Remaining Time Stores the remaining time in seconds.
Elapsed Time Stores the elapsed time in seconds.
Progress Stores normalized progress from 0 to 1.
Has Started Stores whether the timer has been started.
Is Running Stores whether the timer is currently running.
Is Paused Stores whether the timer is currently paused.
Is Done Stores whether the timer has completed.

What It Does

This action lets you inspect a timer without changing it. You can use it to drive UI, debug timing behavior, or branch logic based on the timer state.

Example

Use Timer Get Info to update a cooldown bar:

  1. Read Progress every frame.
  2. Send that value to a UI fill amount or slider.
  3. Optionally read Remaining Time to show countdown text.