Search Issue Tracker
By Design
Votes
0
Found in
4.3.0b3
Issue ID
565899
Regression
No
Reimporting a shader makes all materials in scene forget undeclared properties set from code
Reimporting a shader makes all materials in scene forget undeclared properties set from code.
This is kind-of-an-edge case. In the project, I have BuggyShader. It assigns the colour property to the emissive colour, but DOES NOT DECLARE IT in the properties block.
I have a script that assigns the colour on Start.
This works (which might be a bug since the colour is not exposed) - this is the same for any property, not just colour.
However, when I reimport ANY shader, the colour is forgotten (which kind of makes sense since it was never declared, and hence never saved). However, this is problematic, as it leads to very hard-to-find bugs in the shaders: If you forget to declare a material property, everything works as you expect. However, importing any shader suddenly introduces random breakage (I spent the entire day figuring out this was happening).
Ideally, I'd say that either
A) the property assignment should fail (as you haven't declared the property, effective making it one for Shader.SetGlobalXXX rather than Material.SetXXX)
B) If this is too evil for backwards compat, a warning in the editor on setting this property would be really helpful.
2) How can we reproduce it using the example you attached.
Open bugdemo.unity
Hit play
Notice the sphere turns red.
reimpoty "UnusedShader" in the project window.
Notice that the sphere loses it red
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Texture2D hash changes inside of an AssetBundle when rebuilding a SpriteAtlas bundle with an empty AssetPostprocessor Script enabled
- Aniso Level still applies when Generate MipMap is disabled in Texture Import Settings
- Mipmap Limit Groups long names are not truncated when creating a new Mipmap Limit Group with a long name
- “ArgumentException: Invalid double parameter.” error is thrown when Infinity is typed into the Fixed Timestep field
- GameObject becomes gray when using HDRP and STP together on macOS
Add comment