UnityEditor.FilteredHierarchyProperty.Skip C# (CSharp) Method

Skip() public method

public Skip ( int count, int expanded ) : bool
count int
expanded int
return bool
        public bool Skip(int count, int[] expanded)
        {
            this.m_Position += count;
            return (this.m_Position < this.m_Hierarchy.results.Length);
        }