UnityEditor.SubstanceImporterInspector.GetSortedMaterials C# (CSharp) Method

GetSortedMaterials() private method

private GetSortedMaterials ( ) : UnityEngine.ProceduralMaterial[]
return UnityEngine.ProceduralMaterial[]
        private ProceduralMaterial[] GetSortedMaterials()
        {
            ProceduralMaterial[] materials = this.GetImporter().GetMaterials();
            Array.Sort(materials, new SubstanceNameComparer());
            return materials;
        }