This problem looks like the following parameters are not defined correctly. The correct parameter is Engine_Emitter_NumParticles.
Engine_Emitter_NumParticles and PREV_Engine_Emitter_NumParticles
.\Engine\Plugins\FX\Niagara\Source\NiagaraShader\Public\NiagaraShader.h
SHADER_PARAMETER(int32, Engine_Emitter_NumParticle) SHADER_PARAMETER(int32, PREV_Engine_Emitter_NumParticle)
Changing to the following will work correctly.
SHADER_PARAMETER(int32, Engine_Emitter_NumParticles) SHADER_PARAMETER(int32, PREV_Engine_Emitter_NumParticles)
[Image Removed]
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-191340 in the post.
1 |
Component | UE - Niagara |
---|---|
Affects Versions | 5.2 |
Target Fix | 5.4 |
Fix Commit | 28359800 |
---|---|
Main Commit | 28359812 |
Created | Jul 27, 2023 |
---|---|
Resolved | Sep 29, 2023 |
Updated | Oct 13, 2023 |