Purpose
Gets or sets the time on the Notch timeline in hundredths of a second.
Syntax
float GlobalTime;
Example : Getting
function Update() {
currentTime = UpdateContext.GlobalTime;
}
Example : Setting
function Update() {
UpdateContext.GlobalTime = 5.0;
}