Navigation
API > API/Runtime > API/Runtime/MovieScene
Defines how often a condition needs to be checked. Most conditions should return 'Once', but if the condition result can change during playback, 'OnTick' can be chosen to have the condition re-evaluated each tick.
| Name | EMovieSceneConditionCheckFrequency |
| Type | enum |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Conditions/MovieSceneCondition.h |
| Include Path | #include "Conditions/MovieSceneCondition.h" |
Syntax
enum EMovieSceneConditionCheckFrequency
{
Once,
OnTick,
}
Values
| Name | Remarks |
|---|---|
| Once | Condition result will not change during sequence playback and only needs to get checked once. |
| OnTick | Condition result may change during sequence playback and should be checked per tick. |