GetCurrentWeatherTransition - Weather
Member of: Weather Script
Returns a value from 0.0 to 1.0 describing how far in the current weather has transitioned. If no transition is occurring, this function returns 1.0 and GetOutgoingWeather returns none. If this function returns any other value, GetOutgoingWeather returns the weather which is transitioning out and GetCurrentWeather returns the weather which is transitioning in.
SyntaxEdit
float Function GetCurrentWeatherTransition() native global
ParametersEdit
None.
Return ValueEdit
A number from 0.0 to 1.0 representing the completion percentage of the current weather transition.
ExamplesEdit
float curTransition = Weather.GetCurrentWeatherTransition()
if (curTransition == 1.0)
Debug.Trace("Weather is not transitioning!")
else
Debug.Trace("Weather is transitioning and is " + (curTransition * 100) + "% done")
endIf