Navigation
API > API/Runtime > API/Runtime/MovieScene
Flag structure that can be applied to any sub-section allowing control over various behaviors for the nested sub-sequence.
| Name | EMovieSceneSubSectionFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Evaluation/MovieSceneSectionParameters.h |
| Include Path | #include "Evaluation/MovieSceneSectionParameters.h" |
Syntax
enum EMovieSceneSubSectionFlags
{
None = 0,
OverrideKeepState = 1 << 0,
OverrideRestoreState = 1 << 1,
IgnoreHierarchicalBias = 1 << 2,
BlendHierarchicalBias = 1 << 3,
AnyRestoreStateOverride = OverrideKeepState | OverrideRestoreState,
}
Values
| Name | Remarks |
|---|---|
| None | |
| OverrideKeepState | When set, everything within the sub-section (including further sub-sections) should be keep-state. |
| OverrideRestoreState | When set, everything within the sub-section (including further sub-sections) should be restore-state. |
| IgnoreHierarchicalBias | Everything inside this sub-sequence should ignore hierarchical bias and always be relevant |
| BlendHierarchicalBias | Blend this sub sequence's hierarchical bias level using a higher -> lower override. |
| AnyRestoreStateOverride |