Search Issue Tracker
By Design
Votes
0
Found in
6000.0.60f1
6000.2.7f1
6000.3.0b6
6000.4.0a2
Issue ID
UUM-121677
Regression
No
Particle System with the custom Material breaks the Scene view when the material is using a Shader Graph with the Texture with the power of negative value
How to reproduce:
1. Open the attached project "BugRepro"
2. Open the "OutdoorScene" scene
3. In the Hierarchy, select the "Particle System" GameObject under the "Fireball"
4. Zoom in to the glowing orb and observe the results
Expected results: The Scene view doesn't become black or flicker
Actual results: The Scene view starts to flicker and becomes black
Reproducible with: 6000.0.60f1, 6000.2.7f1, 6000.3.0b6, 6000.4.0a2
Reproducible on: macOS Sequoia 15.6 (M1), Windows 11
Not reproducible on: No other environment tested
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
- “FMOD failed to set the software format to the custom sample rate…” warnings are thrown as System Sample Rate value is being changed in Audio section of Project Settings window
- VFX Marquee selection does match the visual indicator
- “Invalid AABB aabb” errors are spammed when “Infinity” value is entered in Collider Component fields
- Editor Role does not sync with the MPPM Play Mode Scenario Role when entering Play mode
- Long asset names cause overlap with the “Find” function in search result tabs
Resolution Note:
Pow functions with negative exponents or bases are not necessarily portable across platforms and devices.
This is because many power operations on video cards are implemented as exp2(log2(B) * A). This does not support negative numbers in a predictable way. Different platforms will handle negative or zero cases differently.
While Shader Graph aims to be as portable as possible, there would be a performance penalty to hide this problem. Users can handle this case by preventing negative values to show up in content or by handling such cases within their graph as they see fit.