Navigation
API > API/Runtime > API/Runtime/MovieScene > API/Runtime/MovieScene/UMovieSceneSequenceTickManager
Description
Register a new client to receive a tick at the specified tick interval. This client will be grouped with all other clients that tick within Sequencer.TickIntervalGroupingResolutionMs of the specified interval.
| Name | RegisterTickClient |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/MovieSceneSequenceTickManager.h |
| Include Path | #include "MovieSceneSequenceTickManager.h" |
| Source | /Engine/Source/Runtime/MovieScene/Private/MovieSceneSequenceTickManager.cpp |
void RegisterTickClient
(
const FMovieSceneSequenceTickInterval & TickInterval,
TScriptInterface < IMovieSceneSequenceTickManagerClient > InTickInterface
)
Parameters
| Name | Remarks |
|---|---|
| TickInterval | The interval at which to tick the client. |
| InTickInterface | The client that will receieve a tick |