Navigation
API > API/Plugins > API/Plugins/AnimNext > API/Plugins/AnimNext/Param
References
| Module | AnimNext |
| Header | /Engine/Plugins/Experimental/AnimNext/Source/AnimNext/Public/Param/ParamResult.h |
| Include | #include "Param/ParamResult.h" |
Syntax
namespace UE
{
namespace AnimNext
{
enum EParamResult
{
Success = 0,
NotInScope = 0x00000001,
TypeError = 0x00000002,
MutabilityError = 0x00000004,
ErrorFlags = NotInScope | TypeError | MutabilityError,
TypeCompatible = 0x80000000,
InfoFlags = TypeCompatible,
}
}
}
Values
| Name | Description |
|---|---|
| Success | |
| NotInScope | Requested param is not in scope. |
| TypeError | The requested parameter has an incompatible type. |
| MutabilityError | The requested parameter has an incompatible mutability (parameter is immutable but a mutable request was made of it) |
| ErrorFlags | |
| TypeCompatible | The type is compatible according to the supplied requirements. |
| InfoFlags |
Remarks
Results for param access.