ListChangeType Enum
Definition
Section titled “Definition”Types of change events that can be raised by a ScriptableList<T>.
[Obsolete("No longer used. This will be removed in builds.", true)]public enum ListChangeTypeRemarks
Section titled “Remarks”This type is obsolete. Use NotifyCollectionChangedAction instead.
Fields
Section titled “Fields”Called when an item is added to the list.
Added = 0Inserted
Section titled “Inserted”Called when an item is inserted into the list.
Inserted = 1Removed
Section titled “Removed”Called when an item is removed from the list.
Removed = 2Cleared
Section titled “Cleared”Called when the list is cleared.
Cleared = 3Called when an item is set in the list using the indexer.
Set = 4Reversed
Section titled “Reversed”Called when the list is reversed.
Reversed = 5Sorted
Section titled “Sorted”Called when the list is sorted.
Sorted = 6Trimmed
Section titled “Trimmed”Called when the list is trimmed.
Trimmed = 7