Table of Contents

Class InspectorList<T>

Namespace
Gamelogic.Extensions
Assembly
Gamelogic.Extensions.dll

Exactly the same as generic List, but has a custom property drawer that draws a re-orderable list in the inspector.

[Version(2, 5, 0)]
[Serializable]
public class InspectorList<T> : InspectorList, IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable

Type Parameters

T

The type of the contents of this list.

Inheritance
InspectorList<T>
Implements
Derived
Inherited Members
Extension Methods

Remarks

This class should not be used directly (otherwise, it will not appear in the inspector). Instead, use either one of the provided subclasses, or define a new custom non-generic subclass and use that.

Constructors

InspectorList()
InspectorList(IEnumerable<T>)

Properties

Count
IsReadOnly
this[int]

Methods

Add(T)
AddRange(IEnumerable<T>)
Clear()
Contains(T)
CopyTo(T[], int)
GetEnumerator()
IndexOf(T)
Insert(int, T)
Remove(T)
RemoveAt(int)