37 lines
543 B
Markdown
37 lines
543 B
Markdown
<!-- Auto-generated from JSON by GDScript docs maker. Do not edit this document directly. -->
|
|
|
|
# ESCScheduledEvent
|
|
|
|
**Extends:** [Object](../Object)
|
|
|
|
## Description
|
|
|
|
An event that is scheduled to run later
|
|
|
|
## Property Descriptions
|
|
|
|
### event
|
|
|
|
```gdscript
|
|
var event: ESCEvent
|
|
```
|
|
|
|
Event to run when timeout is reached
|
|
|
|
### timeout
|
|
|
|
```gdscript
|
|
var timeout: float
|
|
```
|
|
|
|
The number of seconds until the event is run
|
|
|
|
## Method Descriptions
|
|
|
|
### \_init
|
|
|
|
```gdscript
|
|
func _init(p_event: ESCEvent, p_timeout: float)
|
|
```
|
|
|
|
Create a new scheduled event |