Skip to content

Layout Type

Picks the algorithm used to arrange children. Inspector: CHILD LAYOUT → Layout Type (the segmented button row at the top of the group).

ValueBehaviourFull reference
NoneThis element doesn’t arrange children. Children manage their own positioning (anchors/offsets like vanilla Unity UI).
RowHorizontal auto-layout — children flow left to right.Row & Column
ColumnVertical auto-layout — children flow top to bottom.Row & Column
GridCSS-grid-style 2D layout — explicit tracks, spans, auto-fit.Grid
AbsoluteChildren use absolute positioning relative to this container’s content rect. Different from None: this container is itself sized normally; only the children are absolute.Absolute
CustomPick a registered custom layout algorithm — radial, hex, anything you implement.Custom Layouts

The inspector shows different sub-sections depending on which Layout Type is active — Row/Column controls for Row and Column, Grid controls for Grid, a custom-settings drawer for Custom.

Docs for AutoLayout PRO v1.0.0 Changelog