Search Issue Tracker
Won't Fix
Votes
0
Found in
2021.3.28f1
2022.3.4f1
2023.1.2f1
2023.2.0a22
Issue ID
UUM-42209
Regression
No
VFX Graph particles flicker when "Indirect Draw" is disabled and "Set Alive" is used
Reproduction steps:
1. Open the attached project "VfxGraphGraphicsBufferTest_02"
2. Open the "Test" scene
3. Observe the Game view (may need to be focused)
Expected result: all particles are consistently rendered
Actual result: the particles are flickering
Reproducible with: 2021.3.28f1, 2022.3.4f1, 2023.1.2f1, 2023.2.0a22
Reproducible on: macOS 13.4.1 (Intel), macOS 13.4 (M1)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Mouse input is registered incorrectly in Custom RP when downscaling Render Target and rendering Overlay UI before final upscale
- Time.deltaTime is locked to the display's refresh rate when the built Player is moved to a Secondary Display and Windowed Mode is used
- Crash on RaiseException when importing a specific asset
- Crash on RaiseException when opening a specific project
- DownloadHandlerScript.CompleteContent is called twice when building for WebGL
Resolution Note:
The problematic graph was using VertexID to index a custom compute buffer, but the VFX graph issues instanced draw calls (by design), so the same VertexID is repeated multiple times.
To fix it, one could transfer the particleID attribute to the Shader Graph through an exposed property, and index the compute buffer based on it.