UKismetSystemLibrary::K2_UnPauseTimerDelegate
Deprecated: Use Unpause Timer by Handle
#include "Kismet/KismetSystemLibrary.h"
Access: public
Specifiers: staticUFUNCTIONBlueprintCallable
Description
Resumes a previously paused timer for the given delegate from its current elapsed time. Superseded by resuming via FTimerHandle.
Caveats & Gotchas
- • Marked deprecated in favor of 'Unpause Timer by Handle' for the same identity-matching reasons as the other delegate-based timer functions.
- • Calling this on a timer that isn't paused (never set, or already running) is a harmless no-op.
Signature
static void K2_UnPauseTimerDelegate(UPARAM(DisplayName="Event") FTimerDynamicDelegate Delegate); Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| Delegate | FTimerDynamicDelegate | The event whose bound timer should resume. | — |
Return Type
void Example
Resume a paused timer by its bound event (Blueprint) Blueprint
Event graph: Unpause Timer by Event node fired when the pause menu closes, referencing the same Custom Event used to start the timer. Tags
Version History
Introduced in: 4.0
| Version | Status | Notes |
|---|---|---|
| 5.6 | stable | — |
Feedback
Was this helpful?