Navigation
API > API/Plugins > API/Plugins/Niagara
| |
|
| Name |
ENiagaraInterpolatedSpawnMode |
| Type |
enum |
| Header File |
/Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraCommon.h |
| Include Path |
#include "NiagaraCommon.h" |
Syntax
enum ENiagaraInterpolatedSpawnMode
{
NoInterpolation = 0,
RunUpdateScript,
Interpolation,
}
Values
| Name |
Remarks |
| NoInterpolation |
This mode does no interpolation and skips the update script on the first frame for newly spawned particles. |
| RunUpdateScript |
This mode runs both the spawn and update script, but without any value interpolation for particles. |
| Interpolation |
This mode runs both the spawn and update script and performs a partial update at spawn time. |