Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FTimerManager
Description
Finds a handle to a timer bound to a particular dynamic delegate. This function is intended to be used only by the K2 system.
Finds a handle to a dynamic timer bound to a particular pointer and function name.
| Name | K2_FindDynamicTimerHandle |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/TimerManager.h |
| Include Path | #include "TimerManager.h" |
| Source | /Engine/Source/Runtime/Engine/Private/TimerManager.cpp |
FTimerHandle K2_FindDynamicTimerHandle
(
FTimerDynamicDelegate InDynamicDelegate
) const
A handle to the found timer - !IsValid() if no such timer was found.
Parameters
| Name | Remarks |
|---|---|
| InDynamicDelegate | The dynamic delegate to search for. |