Explorar el Código

Fixed typo with known guids

Syed zainul abedin hace 1 semana
padre
commit
ffbeabc30a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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));