PauseAdjustedCurrentTime
Introduction
Code Example
const float amountOfUnpausedTimeToCheckFor = 5;
if(ScreenManager.CurrentScreen.PausedAdjustedCurrentTime > amountOfUnpausedTimeToCheckFor)
{
// More than 5 seconds have passed since the Screen was first initialized
}Last updated
Was this helpful?