GlobalTime
Updated: 4 Dec 2023
Updated: 4 Dec 2023
Gets or sets the time on the Notch timeline in seconds.
float GlobalTime;
function Update()
{
currentTime = UpdateContext.GlobalTime;
}
function Update()
{
UpdateContext.GlobalTime = 5.0;
}
Please note this is a member variable of UpdateContext
, not a function.