Navigation
API > API/Plugins > API/Plugins/AnimNext > API/Plugins/AnimNext/TraitCore
References
| Module | AnimNext |
| Header | /Engine/Plugins/Experimental/AnimNext/Source/AnimNext/Public/TraitCore/ITraitInterface.h |
| Include | #include "TraitCore/ITraitInterface.h" |
Syntax
namespace UE
{
namespace AnimNext
{
enum ETraitStackPropagation
{
Continue,
Stop,
}
}
}
Values
| Name | Description |
|---|---|
| Continue | Forward the call to our parent on the trait stack (if we have one) |
| Stop | Do not forward the call to our parent, execution stops. |
Remarks
Trait Stack Propagation
This enum can be used to signal whether an interface call should be forwarded to its parent on the trait stack or not.