UnityEditor.HierarchyProperty.CountRemaining C# (CSharp) 메소드

CountRemaining() 개인적인 메소드

private CountRemaining ( int expanded ) : int
expanded int
리턴 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