Update Timeouts

2025-06-22 17:01:29 +00:00
parent a47e54c469
commit d7408c3e22

@ -11,4 +11,9 @@ self.timeout(timeoutID, delay)
def onEvent(self, event): def onEvent(self, event):
if event.type == gameUtils.Timeout: if event.type == gameUtils.Timeout:
print(f'Timeout {event.timeoutID} just fired.') print(f'Timeout {event.timeoutID} just fired.')
```
## To see if there's a timeout on the stack:
```python
self.awaitingTimeout(timeoutID)
``` ```