UnityEditor.GameObjectTreeViewDataSource.GetAdjustedItemDepth C# (CSharp) Méthode

GetAdjustedItemDepth() private méthode

private GetAdjustedItemDepth ( bool hasSearchString, int minDepth, int adjPropertyDepth ) : int
hasSearchString bool
minDepth int
adjPropertyDepth int
Résultat int
        private int GetAdjustedItemDepth(bool hasSearchString, int minDepth, int adjPropertyDepth)
        {
            return (!hasSearchString ? (adjPropertyDepth - minDepth) : 0);
        }