We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0aae46 commit 4f10a81Copy full SHA for 4f10a81
Assets/MRTK/SDK/Editor/Migration/Tools/MigrationTool.cs
@@ -397,7 +397,7 @@ private static List<string> FindAllAssetsOfType(Type[] types)
397
var filter = string.Join(" ", types
398
.Select(x => string.Format("t:{0}", x.Name))
399
.ToArray());
400
- return AssetDatabase.FindAssets(filter).Select(x => AssetDatabase.GUIDToAssetPath(x)).ToList();
+ return AssetDatabase.FindAssets(filter, new[] {"Assets"}).Select(x => AssetDatabase.GUIDToAssetPath(x)).ToList();
401
}
402
403
private static bool IsSceneGameObject(Object selectedObject)
0 commit comments