Search Issue Tracker
By Design
By Design in 6000.0.X
Votes
0
Found in
2021.3.38f1
2022.3.30f1
6000.0.3f1
Issue ID
UUM-72657
Regression
No
Special Values from SurfaceOutput Struct are stripped when using them in the #if UNITY_PASS_FORWARDBASE directive
How to reproduce:
1. Open the user-attached project “SurfaceShaderBug”
2. Open the “SampleScene” scene
3. Observe the “Cube” GameObejct in the Scene View
Expected results: The “Cube” is black
Actual results: The “Cube” is red
Reproducible with: 2021.3.38f1, 2022.3.30f1, 6000.0.3f1
Reproducible on: Windows 11 Pro
Not reproducible on: No other environment tested
Note: Also reproducible in Player
Workaround:
Using #ifndef UNITY_PASS_FORWARDADD instead solves the issue
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
- Required SpriteMask class (ID 331) is stripped when "Strip Engine Code" is enabled
- “Maximized serialized file backup not found” error is thrown when minimizing a window in a newly opened project
- Build stack trace contains invalid lines when building with IL2CPP using scripts with delegates containing generic types in the signature
- Entities Systems window has a “Show Full Player Loop” dropdown which does nothing when clicked after enabling “Show Full Player Loop”
- Entities Hierarchy Search “Show/Hide” button’s Lens Icon is blurry when the Editor is on an external monitor
Resolution Note:
Pass type defines are not present in the phase that analyses the surface shader code.
You can use SHADER_TARGET_SURFACE_ANALYSIS:
#if SHADER_TARGET_SURFACE_ANALYSIS || UNITY_PASS_FORWARDADD
...
#endif
Resolution Note (6000.0.X):
Pass type defines are not present in the phase that analyses the surface shader code.
You can use SHADER_TARGET_SURFACE_ANALYSIS:
#if SHADER_TARGET_SURFACE_ANALYSIS || UNITY_PASS_FORWARDADD
...
#endif