The following code can often be found in UNiagaraDataInterfaceChaosDestruction.
const int32 ParticleID = ParticleIDParam.GetAndAdvance() - LastSpawnedPointID + 1;
The LastSpawnedPointID is usually set to -1, so the iteration range is over a range of 2 to GetNumInstances()+2 and references an outside the range.
The following code can fix the issue :
const int32 ParticleID = ParticleIDParam.GetAndAdvance() +LastSpawnedPointID + 1;
i have this problem UE4CC-Windows-58DC12AF4B97F057BD108FBFF569B2E9_0000
I am not able to find world outliner how to enable it?
Delay nodes occasionally don't fire the "Completed" output in a nativized build
What method is used to fill polygonal regions when drawing spline mesh at run time?
How does TextureRenderTarget2D get TArray<uint8> type data?
Undefined sysmbol: typeinfo for AActor when cross-compile linux dedicated server on windows
How to achieve HLSL Multiple Render Target in Material blueprints?
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-231785 in the post.