Package | Description |
---|---|
com.badlogic.gdx.scenes.scene2d.ui |
Modifier and Type | Method and Description |
---|---|
VerticalGroup |
VerticalGroup.align(int align)
Sets the alignment of all widgets within the vertical group.
|
VerticalGroup |
VerticalGroup.bottom()
Sets
Align.bottom and clears Align.top for the alignment of all widgets within the vertical group. |
VerticalGroup |
VerticalGroup.center()
Sets the alignment of all widgets within the vertical group to
Align.center . |
VerticalGroup |
VerticalGroup.columnAlign(int columnAlign)
Sets the vertical alignment of each column of widgets when
wrapping is enabled and sets the horizontal
alignment of widgets within each column. |
VerticalGroup |
VerticalGroup.columnBottom()
Adds
Align.bottom and clears Align.top for the alignment of each column of widgets when wrapping is enabled. |
VerticalGroup |
VerticalGroup.columnCenter()
Sets the alignment of widgets within each column to
Align.center . |
VerticalGroup |
VerticalGroup.columnLeft()
Adds
Align.left and clears Align.right for the alignment of widgets within each column. |
VerticalGroup |
VerticalGroup.columnRight()
Adds
Align.right and clears Align.left for the alignment of widgets within each column. |
VerticalGroup |
VerticalGroup.columnTop()
Adds
Align.top and clears Align.bottom for the alignment of each column of widgets when wrapping is enabled. |
VerticalGroup |
VerticalGroup.expand() |
VerticalGroup |
VerticalGroup.expand(boolean expand)
When true and wrap is false, the columns will take up the entire vertical group width.
|
VerticalGroup |
VerticalGroup.fill() |
VerticalGroup |
VerticalGroup.fill(float fill) |
VerticalGroup |
VerticalGroup.grow()
Sets fill to 1 and expand to true.
|
VerticalGroup |
VerticalGroup.left()
Adds
Align.left and clears Align.right for the alignment of all widgets within the vertical group. |
VerticalGroup |
VerticalGroup.pad(float pad)
Sets the padTop, padLeft, padBottom, and padRight to the specified value.
|
VerticalGroup |
VerticalGroup.pad(float top,
float left,
float bottom,
float right) |
VerticalGroup |
VerticalGroup.padBottom(float padBottom) |
VerticalGroup |
VerticalGroup.padLeft(float padLeft) |
VerticalGroup |
VerticalGroup.padRight(float padRight) |
VerticalGroup |
VerticalGroup.padTop(float padTop) |
VerticalGroup |
VerticalGroup.reverse()
The children will be displayed last to first.
|
VerticalGroup |
VerticalGroup.reverse(boolean reverse)
If true, the children will be displayed last to first.
|
VerticalGroup |
VerticalGroup.right()
Adds
Align.right and clears Align.left for the alignment of all widgets within the vertical group. |
VerticalGroup |
VerticalGroup.space(float space)
Sets the vertical space between children.
|
VerticalGroup |
VerticalGroup.top()
Sets
Align.top and clears Align.bottom for the alignment of all widgets within the vertical group. |
VerticalGroup |
VerticalGroup.wrap()
If false, the widgets are arranged in a single column and the preferred height is the widget heights plus spacing.
|
VerticalGroup |
VerticalGroup.wrap(boolean wrap) |
VerticalGroup |
VerticalGroup.wrapSpace(float wrapSpace)
Sets the horizontal space between columns when wrap is enabled.
|