Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Particles > API/Runtime/Engine/Particles/Parameter
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Classes/Particles/Parameter/ParticleModuleParameterDynamic.h |
| Include | #include "Particles/Parameter/ParticleModuleParameterDynamic.h" |
Syntax
enum EEmitterDynamicParameterValue
{
EDPV_UserSet,
EDPV_AutoSet,
EDPV_VelocityX,
EDPV_VelocityY,
EDPV_VelocityZ,
EDPV_VelocityMag,
EDPV_MAX,
}
Values
| Name | Description |
|---|---|
| EDPV_UserSet | UserSet - use the user set values in the distribution (the default) |
| EDPV_AutoSet | AutoSet - ignore values set in the distribution, another module will handle this data |
| EDPV_VelocityX | VelocityX - pass the particle velocity along the X-axis thru |
| EDPV_VelocityY | VelocityY - pass the particle velocity along the Y-axis thru |
| EDPV_VelocityZ | VelocityZ - pass the particle velocity along the Z-axis thru |
| EDPV_VelocityMag | VelocityMag - pass the particle velocity magnitude thru |
| EDPV_MAX |
Remarks
EmitterDynamicParameterValue Enumeration indicating the way a dynamic parameter should be set.