Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/FTSTicker > API/Runtime/Core/Containers/FTSTicker/AddTicker
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/Ticker.h |
| Include | #include "Containers/Ticker.h" |
| Source | /Engine/Source/Runtime/Core/Private/Containers/Ticker.cpp |
FDelegateHandle AddTicker
(
const FTickerDelegate & InDelegate,
float InDelay
)
Remarks
Add a new ticker with a given delay / interval
Can be called concurrently. Resources used by the delegate must be released on the ticking thread.
Parameters
| Name | Description |
|---|---|
| InDelegate | Delegate to fire after the delay |
| InDelay | Delay until next fire; 0 means "next frame" |