Navigation
API > API/Editor > API/Editor/Sequencer
Bitfield identifying which category of motion trail a hierarchy provides. Each trail hierarchy sets its category; the trail tool only updates/renders hierarchies whose category intersects the user-visible mask.
| Name | ETrailCategory |
| Type | enum |
| Header File | /Engine/Source/Editor/Sequencer/Public/Tools/TrailCategory.h |
| Include Path | #include "Tools/TrailCategory.h" |
Syntax
enum ETrailCategory
{
None = 0,
Transform = 1 << 0,
ControlRig = 1 << 1,
AnimMixer = 1 << 2,
All = Transform | ControlRig | AnimMixer,
}
Values
| Name | Remarks |
|---|---|
| None | |
| Transform | |
| ControlRig | |
| AnimMixer | |
| All |