Navigation
API > API/Editor > API/Editor/SequencerCore
| Name | UE::Sequencer::ECachedSoloState |
| Type | enum |
| Header File | /Engine/Source/Editor/SequencerCore/Public/MVVM/Extensions/ISoloableExtension.h |
| Include Path | #include "MVVM/Extensions/ISoloableExtension.h" |
Syntax
namespace UE
{
namespace Sequencer
{
enum ECachedSoloState
{
None = 0,
Soloable = 1 << 0,
SoloableChildren = 1 << 1,
Soloed = 1 << 2,
PartiallySoloedChildren = 1 << 3,
ImplicitlySoloedByParent = 1 << 4,
InheritedFromChildren = SoloableChildren | PartiallySoloedChildren,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Soloable | |
| SoloableChildren | |
| Soloed | |
| PartiallySoloedChildren | |
| ImplicitlySoloedByParent | |
| InheritedFromChildren |