Search Issue Tracker
Fixed in 5.5.0f3
Votes
0
Found in
5.3.5f1
Issue ID
819900
Regression
No
Shader keyword is not serialized in the material file
How to reproduce:
1. Open case_819900-Shaders.zip
2. Open scene "1"
3. Drag and drop "ToggleTest" shader on material "Test1"
4. Select "Custom/ToggleTest" shader from drop down menu for material "Test2"
Expected behaviour: both materials look identical, since the same shader is used.
Actual behaviour: materials look different.
Note: Set 'Force Text' through 'Edit->Project Settings->Editor' and check the material file with text editor.
'm_ShaderKeywords:' line will differ between the two materials.
Comments (3)
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
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
chyrho
Jan 30, 2018 20:35
I examined the source code of the standard shaders in 5.6.1 and realized that those two missing keywords are probably no longer required as they are now always active, according to the shader script.
#pragma shader_feature _NORMALMAP
...
#pragma shader_feature _METALLICGLOSSMAP
So my problem is NOT really about missing keywords. Instead something else happened and caused Unity to disregard the normal map and metallic map I assigned to the material.
Sorry about the confusion.
chyrho
Jan 30, 2018 19:56
Forgot to mention the Unity versions I tried that showed the symptom: 5.6.1f3, 2017.3.0f3.
chyrho
Jan 30, 2018 19:54
I'm still seeing something similar in loosing shader keywords after re-saving the material. The ones I lost are from two of UMA's Diffuse/Normal/Metallic materials which use the standard shader.
Diff in changes:
- m_ShaderKeywords: _ALPHATEST_ON _EMISSION _METALLICGLOSSMAP _NORMALMAP
+ m_ShaderKeywords: _ALPHATEST_ON _EMISSION