UnityEditor.HierarchyProperty.CountRemaining C# (CSharp) Method

CountRemaining() private method

private CountRemaining ( int expanded ) : int
expanded int
return int
        public extern int CountRemaining(int[] expanded);
        [MethodImpl(MethodImplOptions.InternalCall), ThreadAndSerializationSafe]

Usage Example

示例#1
0
        private HierarchyProperty GetLast()
        {
            HierarchyProperty property = new HierarchyProperty(HierarchyType.Assets);
            int count = property.CountRemaining(this.m_ExpandedArray);

            property.Reset();
            if (property.Skip(count, this.m_ExpandedArray))
            {
                return(property);
            }
            return(null);
        }
All Usage Examples Of UnityEditor.HierarchyProperty::CountRemaining