浏览代码

Fixed typo with known guids

Syed zainul abedin 1 周之前
父节点
当前提交
ffbeabc30a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Assets/IntelligentProjectAnalyzer/Editor/AssetDataFetcher.cs

+ 1 - 1
Assets/IntelligentProjectAnalyzer/Editor/AssetDataFetcher.cs

@@ -33,7 +33,7 @@ namespace IntelligentProjectAnalyzer.Editor
             var knownGuids = new HashSet<string>();
             knownGuids.UnionWith(scriptableObjects);
             knownGuids.UnionWith(prefabs);
-            knownGuids.UnionWith(scriptableObjects);
+            knownGuids.UnionWith(scripts);
             knownGuids.UnionWith(scenes);
             
             var miscGuids = new Queue<string>(allGuids.Except(knownGuids));