BindingUpdateTrigger
Option to tell a binding when to update.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Enum
- Namespace: UnityEngine.UIElements
- Assembly: UnityEngine.UIElementsModule
public enum BindingUpdateTrigger
Fields
Value | Description |
|---|---|
| EveryUpdate | On every update, regardless of data source changes. |
| OnSourceChanged | Only when a change is detected in the source or Binding.MarkDirty() has been called. |
| WhenDirty | Only when Binding.MarkDirty() has been called. |