| Parameter | Description |
|---|---|
| zoom | The new zoom level, equal to the horizontal scale of the graph view's content. A value of 1 represents 100% zoom; values below 1 represent zoomed-out views. |
Called when the graph view's zoom level changes.
Fires whenever the graph view's zoom changes, and also once for the initial zoom when the view is first built. Override this to swap custom UI for a level-of-detail-appropriate representation — for example, hiding fine details or replacing text with icons when the graph is zoomed out.
public override void OnViewLODChanged(float zoom)
{
// Hide detailed UI when zoomed out below 50%.
m_DetailsContainer.style.display = zoom < 0.5f
? DisplayStyle.None
: DisplayStyle.Flex;
}