Alquimiaware.NuGetUnity.NuGetWindow.FindFirst C# (CSharp) Méthode

FindFirst() private static méthode

Searches by a pattern, returning the first asset found.
private static FindFirst ( string filter ) : string
filter string The seach patter, same as FindAsset.
Résultat string
        private static string FindFirst(string filter)
        {
            return AssetDatabase.GUIDToAssetPath(
                AssetDatabase.FindAssets(filter)[0]);
        }