UKismetSystemLibrary::K2_IsTimerPausedDelegate
Deprecated: Use Is Timer Paused by Handle
#include "Kismet/KismetSystemLibrary.h"
Access: public
Specifiers: staticUFUNCTIONBlueprintPure
Description
Returns true if a timer exists and is currently paused for the given delegate. Superseded by querying via FTimerHandle.
Caveats & Gotchas
- • Marked deprecated in favor of 'Is Timer Paused by Handle' for the same identity-matching reasons as the other delegate-based timer functions.
- • Returns false if no timer was ever set for the delegate, the same as it would for a timer that's actively running — this only tells you 'paused' vs 'not paused', not existence.
Signature
static bool K2_IsTimerPausedDelegate(UPARAM(DisplayName="Event") FTimerDynamicDelegate Delegate); Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| Delegate | FTimerDynamicDelegate | The event whose timer state to query. | — |
Return Type
bool Example
Check if a timer is paused (Blueprint) Blueprint
Event graph: Is Timer Paused by Event feeding a Branch node, only calling Unpause Timer by Event if the timer is confirmed paused. Tags
Version History
Introduced in: 4.0
| Version | Status | Notes |
|---|---|---|
| 5.6 | stable | — |
Feedback
Was this helpful?