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
- Typos in High Definition 3D sample tutorials
- “Handles.Repaint called outside an editor OnGUI" error is thrown in the Console when creating a new Tile Palette from the Tile Palette Overlay in Scene view
- Shader Graph window icon is blurry and low quality when the Shader Graph is created using the Universal 2D template
- “Export HDRP Sky to Image” command error message does not indicate that Game view must be visible
- Adaptive Performance Settings Framerate field doesn't display the "supported without VSync" warning, when the field is collapsed in Build Profiles
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)