CurrentMinute
Returns the minute component of the in-fiction clock, 0 through 59. Combine with CurrentHour for a full clock-of-day read.
Category: Time Returns: int
Signature
CurrentMinute()
No arguments.
Examples
CurrentMinute() == 0 // exactly on the hour
CurrentMinute() < 30 // first half of the hour
CurrentHour() == 9 && CurrentMinute() >= 30
// 9:30 through 9:59
Notes
- Requires time to be enabled for the project (Project, then Time). With time disabled, any expression using this function fails validation.
- Most window checks read better as IsTimeBetween
than as a
CurrentHour/CurrentMinutepair. Reach forCurrentMinutewhen you need the raw number, for example formatting a clock display.