Navigation
API > API/Editor > API/Editor/SequencerCore
| Name | UE::Sequencer::ECachedMuteState |
| Type | enum |
| Header File | /Engine/Source/Editor/SequencerCore/Public/MVVM/Extensions/IMutableExtension.h |
| Include Path | #include "MVVM/Extensions/IMutableExtension.h" |
Syntax
namespace UE
{
namespace Sequencer
{
enum ECachedMuteState
{
None = 0,
Mutable = 1 << 0,
MutableChildren = 1 << 1,
Muted = 1 << 2,
PartiallyMutedChildren = 1 << 3,
ImplicitlyMutedByParent = 1 << 4,
Inheritable = 1 << 5,
InheritedFromChildren = MutableChildren | PartiallyMutedChildren,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Mutable | |
| MutableChildren | |
| Muted | |
| PartiallyMutedChildren | |
| ImplicitlyMutedByParent | |
| Inheritable | |
| InheritedFromChildren |