Navigation
A component with sections that can be hovered and selected.
Properties
| Name | Type | Description |
|---|---|---|
| Sections | { string | Fusion.Child } | The sections for the navigation component. |
| ActiveSection | Fusion.UsedAs<number>? | The index of the section in the Sections array to be active. (Set to nil to have no section active). |
| DefaultActiveSection | Fusion.UsedAs<number?>? | If no section is active then this section will automatically become active. |
| FillDirection | Fusion.UsedAs<Enum.FillDirection>? | The fill direction for the navigation (Defaults to Enum.FillDirection.Horizontal). |
Example
Scope:Navigation {
Sections = { "Hello World", "Baz", "Foo Bar" },
DefaultActiveSection = 2,
ActiveSection = 3
}