# PauseAdjustedCurrentTime

### Introduction

The PauseAdjustedCurrentTime property returns the amount of time (in seconds) since the Screen has started, excluding the amount of time the Screen has been paused.

### Code Example

The following if statement can be used to check if the Screen has been active and unpaused for five seconds:

```
const float amountOfUnpausedTimeToCheckFor = 5;
if(ScreenManager.CurrentScreen.PausedAdjustedCurrentTime > amountOfUnpausedTimeToCheckFor)
{
    // More than 5 seconds have passed since the Screen was first initialized
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.flatredball.com/flatredball/glue-reference/screen/glue-reference-screens-pauseadjustedcurrenttime.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
