OnViewBuilt()
Called once, after the state's built-in UI is fully constructed and before its VisualElement is attached to the state machine view.
Read time 1 minuteLast updated 11 days ago
Definition
- Type: Method
- Namespace: Unity.GraphToolkit.Editor
- Assembly: UnityEditor
public virtual void OnViewBuilt()
Remarks
This is the recommended entry point for allocating custom UI and adding it to IStateView.Root. It fires exactly once per view instance, so any element allocated here can be safely cached in a field.
If the state is culled and later revealed, the contents of IStateView.Root are cleared; re-add your cached elements from StateView<T>.OnCullingChanged (when is ). Prefer this pattern over allocating a fresh element each time.
cullingEnabledfalseExamples
Label m_Label;public override void OnViewBuilt(){ m_Label = new Label($"State: {State.Title}"); View.Root.Add(m_Label);}