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
- Editor colors appear darkened out when HDR Display Output is enabled
- Default Mesh Renderer Material cannot be found in the Select Material window after removing it from the GameObject
- UI Builder button text disappears in the GameView when the radius of the button is increased in a specific project
- Paste Settings functionality does not save the pasted settings in volume profile when reloading the project
- Getting a deprecated package for JetBrains Rider pop up when opening or creating a project
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.