From 9c0e2c7a5005fa57ef321cc152dc7a44a1ae9acf Mon Sep 17 00:00:00 2001 From: rayn Date: Fri, 11 Dec 2020 16:45:19 +0800 Subject: [PATCH] namespace missing bugfix --- AssetDependencyGraph/Editor/AssetDependencyGraph.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AssetDependencyGraph/Editor/AssetDependencyGraph.cs b/AssetDependencyGraph/Editor/AssetDependencyGraph.cs index 5ac5055..f4cedcd 100644 --- a/AssetDependencyGraph/Editor/AssetDependencyGraph.cs +++ b/AssetDependencyGraph/Editor/AssetDependencyGraph.cs @@ -1,3 +1,4 @@ +using System; using System.Collections.Generic; using UnityEditor; using UnityEditor.UIElements; @@ -11,6 +12,7 @@ using UnityEngine.Experimental.UIElements.StyleEnums; #endif using UnityEngine; +using Object = UnityEngine.Object; public class AssetGraphView : GraphView {