Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

NodeView<T0>.OnViewLODChanged

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void OnViewLODChanged(float zoom);

Parameters

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.

Description

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;
 }