Class NavGraph
NavGraph is a collection of Nav
A Nav
Inherited Members
Namespace: Unity.AppUI.Navigation
Assembly: Unity.AppUI.Navigation.dll
Syntax
[Serializable]
public class NavGraph : NavGraphViewHierarchicalNode
Remarks
A NavGraph is not valid until you add a destination and set the start
Properties
startDestination
Sets the starting destination for this NavGraph.
Declaration
public NavDestination startDestination { get; set; }
Property Value
Type | Description |
---|---|
Nav |
Methods
FindStartDestination()
Find the start destination for this NavGraph.
Declaration
public NavDestination FindStartDestination()
Returns
Type | Description |
---|---|
Nav |
The start destination for this NavGraph. |