GetWeatherTransitionDuration

From Wiki G1R-MP G1 Remake Multiplayer
Revision as of 09:53, 15 August 2026 by QCherry (talk | contribs) (Complete Lua function catalog)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

getWeatherTransitionDuration

Returns the transition duration associated with the current authoritative weather state.

Syntax

int transitionMs = getWeatherTransitionDuration()

Parameters

This function does not accept parameters.

Returns

Returns the transition duration in milliseconds.

Examples

Display the current weather and transition duration:

local message = string.format(
    "Weather: %s (%d ms)",
    getWeather(),
    getWeatherTransitionDuration())
outputDebugString(message)

Notes

  • Available only in server-side resource scripts.
  • A value of 0 indicates an immediate weather transition.