ShaderGraphImporterEditor.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.IO;
  3. using UnityEditor.Callbacks;
  4. using UnityEditor.Experimental.AssetImporters;
  5. using UnityEditor.ShaderGraph.Drawing;
  6. using UnityEngine;
  7. namespace UnityEditor.ShaderGraph
  8. {
  9. [CustomEditor(typeof(ShaderGraphImporter))]
  10. class ShaderGraphImporterEditor : ScriptedImporterEditor
  11. {
  12. protected override bool needsApplyRevert => false;
  13. public override void OnInspectorGUI()
  14. {
  15. if (GUILayout.Button("Open Shader Editor"))
  16. {
  17. AssetImporter importer = target as AssetImporter;
  18. Debug.Assert(importer != null, "importer != null");
  19. ShowGraphEditWindow(importer.assetPath);
  20. }
  21. ApplyRevertGUI();
  22. }
  23. internal static bool ShowGraphEditWindow(string path)
  24. {
  25. var guid = AssetDatabase.AssetPathToGUID(path);
  26. var extension = Path.GetExtension(path);
  27. if (string.IsNullOrEmpty(extension))
  28. return false;
  29. // Path.GetExtension returns the extension prefixed with ".", so we remove it. We force lower case such that
  30. // the comparison will be case-insensitive.
  31. extension = extension.Substring(1).ToLowerInvariant();
  32. if (extension != ShaderGraphImporter.Extension && extension != ShaderSubGraphImporter.Extension)
  33. return false;
  34. foreach (var w in Resources.FindObjectsOfTypeAll<MaterialGraphEditWindow>())
  35. {
  36. if (w.selectedGuid == guid)
  37. {
  38. w.Focus();
  39. return true;
  40. }
  41. }
  42. var window = EditorWindow.CreateWindow<MaterialGraphEditWindow>(typeof(MaterialGraphEditWindow), typeof(SceneView));
  43. window.Initialize(guid);
  44. window.Focus();
  45. return true;
  46. }
  47. [OnOpenAsset(0)]
  48. public static bool OnOpenAsset(int instanceID, int line)
  49. {
  50. var path = AssetDatabase.GetAssetPath(instanceID);
  51. return ShowGraphEditWindow(path);
  52. }
  53. }
  54. }