Search Issue Tracker
By Design
Votes
0
Found in
2021.3.44f1
2022.3.50f1
6000.0.23f1
Issue ID
UUM-84066
Regression
No
Sample Bezier node in VFX Graph breaks when the Particle count is higher than 32
Reproduction steps:
1. Open the attached “Unity6_test.zip” project
2. Open the “Bug Scene” Scene
3. Observe “VFX_Bezier_Beam” GameObject in the Scene
Expected result: A clean particle strip that follows a curve is visible
Actual result: A broken particle strip is visible
Reproducible with: 2021.3.44f1, 2022.3.50f1, 6000.0.23f1
Reproducible on: Windows 11
Not reproducible on: No other environment tested
Notes:
- “Spawn Count” can be increased on the 'VFX_Bezier_Beam' GameObject
- The higher the “Spawn Count” the more the strip breaks
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
- Mono Windows Builds don't produce full log callstacks when generating logs
- AssetBundles fail to load when running in Built Players for Mobile Devices
- UI elements with text gets bigger and grey when Player window is moved to another screen with different resolution
- System name accepts multiline text but crops it on confirmation, duplicates input, and shrinks the field when empty
- UI element scale and position are wrong in project build when DRS is changed with HDR and Software Dynamic Resolution enabled
Resolution Note:
Sample Bezier node works fine, the issue is the index that is being used to compute the parameter T.
In the sample provided, the user is adding a custom attribute "Spawn_Index" to compute the ratio in strip, using "Get Spawn Index" as the base.
This is not correct, because particles are spawned in parallel and we can't control the order if we have more than 1 group (that is why it only happens after 32).
Instead, the user could use "Get Spawn Index In Strip", which computes the correct value.
From U6, the user can also use the new node "Get Ratio Over Strip" to avoid doing the calculation themselves.