DictionaryChangeType Enum
Definition
Section titled “Definition”Type of change events that can be raised by a ScriptableDictionary<TKey, TValue>.
[Obsolete("No longer used. This will be removed in builds.", true)]public enum DictionaryChangeTypeRemarks
Section titled “Remarks”This type is obsolete. Use NotifyCollectionChangedAction instead.
Fields
Section titled “Fields”Called when an item is added to the dictionary.
Added = 0Removed
Section titled “Removed”Called when an item is removed from the dictionary.
Removed = 1Cleared
Section titled “Cleared”Called when the dictionary is cleared.
Cleared = 2Called when an item is set in the dictionary using the indexer.
Set = 3Trimmed
Section titled “Trimmed”Called when the dictionary is trimmed.
Trimmed = 4