FlowLayout
From Crumbled World Wiki
Example
local panel = form:add(Panel(PanelSize(Vec2(-1))))
--Set a FlowLayout to the panel. Note that doing this i meaningless because FlowLayout is the default layout.
panel:setLayout(FlowLayout())
Inheritance
Constructor
| function | description |
|---|---|
| FlowLayout(Alignment align) | |
| FlowLayout(PanelSize panelSpacing) | |
| FlowLayout(Alignment align, PanelSize panelSpacing) | |
| FlowLayout(FallLayout fallLayout) | |
| FlowLayout() |
Functions
| return | function | description |
|---|---|---|
| Alignment | getAlignment() | Get Alignment. |
| setAlignment(Alignment align) | set Alignment. |