Jump the timeline to time specified in seconds.
void JumpGlobalTime(float time)
time | Time to jump to expressed in seconds (float) |
var frame = 0;
function Update()
{
if (frame % 100 == 0)
{
JumpGlobalTime(5.0);
}
frame = frame + 1;
}