Navigation
API > API/Plugins > API/Plugins/Niagara
| Name | ENiagaraTypeRegistryFlags |
| Type | enum |
| Header File | /Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraTypeRegistry.h |
| Include Path | #include "NiagaraTypeRegistry.h" |
Syntax
enum ENiagaraTypeRegistryFlags
{
None = 0,
AllowUserVariable = (1 << 0),
AllowSystemVariable = (1 << 1),
AllowEmitterVariable = (1 << 2),
AllowParticleVariable = (1 << 3),
AllowAnyVariable = (AllowUserVariable | AllowSystemVariable | AllowEmitterVariable | AllowParticleVariable),
AllowNotUserVariable = (AllowSystemVariable | AllowEmitterVariable | AllowParticleVariable),
AllowParameter = (1 << 4),
AllowPayload = (1 << 5),
IsUserDefined = (1 << 6),
}
Values
| Name | Remarks |
|---|---|
| None | |
| AllowUserVariable | |
| AllowSystemVariable | |
| AllowEmitterVariable | |
| AllowParticleVariable | |
| AllowAnyVariable | |
| AllowNotUserVariable | |
| AllowParameter | |
| AllowPayload | |
| IsUserDefined |