Navigation
API > API/Plugins > API/Plugins/AnimNext > API/Plugins/AnimNext/EvaluationVM
References
| Module | AnimNext |
| Header | /Engine/Plugins/Experimental/AnimNext/Source/AnimNext/Public/EvaluationVM/EvaluationFlags.h |
| Include | #include "EvaluationVM/EvaluationFlags.h" |
Syntax
namespace UE
{
namespace AnimNext
{
enum EEvaluationFlags
{
None = 0x00,
Trajectory = 0x01,
Bones = 0x02,
Curves = 0x04,
Attributes = 0x08,
All = 0xff,
}
}
}
Values
| Name | Description |
|---|---|
| None | Empty flags. |
| Trajectory | Evaluates the trajectory of the root bone. |
| Bones | Evaluates the animation pose of all bones. |
| Curves | Evaluates the animation curves. |
| Attributes | Evaluates the animation attributes. |
| All | Evaluates everything. |
Remarks
Flags to control what to compute when evaluating an animation node.