Search Issue Tracker
Fixed in 6.5.0
Votes
0
Found in [Package]
5.3.1
Issue ID
1129900
Regression
Yes
Shader Graph - Invalid dependency paths when creating Unlit graphs
Shader Graph - Invalid dependency paths when creating Unlit graphs
When creating an Unlit Shader Graph asset, two warnings about invalid dependencies will be shown in the console:
Invalid dependency path: Packages\com.unity.render-pipelines.lightweight\Editor\ShaderGraph\lightweightUnlitPass.template
UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr)
Invalid dependency path: Packages\com.unity.render-pipelines.lightweight\Editor\ShaderGraph\lightweightUnlitExtraPasses.template
UnityEngine.GUIUtility:ProcessEvent(Int32, IntPtr)
1. Open Unity
2. Load the attached project
3. Create an Unlit shader graph in the project view
Expected Result:
A graph asset is created without any warnings or errors.
Actual Result:
Two warnings appear in the console.
Tested on Windows using Unity 2019.1.0b4
Occurs in Shadergraph/LWRP 5.3.1
Does not occur when using the 5.2.3 set.
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
- Shader warning in 'Hidden/Core/DebugOccluder' thrown after building High Definition 3D Sample Template
- Audio Mixer “+” buttons overlap with UI when the Audio Mixer window layout is set to Horizontal
- "Clear" button in the "Set project display name" closes all the pop-up instead of clearing just a name from the field
- Video Player renders no video on specific devices when using Vulkan
- The Editor slows itself down by showing tons of warnings when the majority of TransformAccessArrays content are NullRefs
jeyemdelacruz
Jul 16, 2019 08:33
How did you fix this pls help
dlawry
Jun 14, 2019 23:40
Seems like a simple thing to fix. There's a check in the public override void OnImportAsset(AssetImportContext ctx) method of ShaderGraphImporter.cs to ensure the sourceAssetDependencyPath starts with either "Packages/" or "Assets/". The problem is with the OS relevant path separator I think. On Windows environments the check would be against "Packages\\" or "Assets\\" so simply abstracting the OS path separator to use in this check would probably be a good solution.
Tested on Windows 10 with Unity Version 2019.1.6f1 (f2970305fe1c)