|
Name | Description |
---|---|
content | The content to make room for displaying |
style | The GUIStyle to layout for. |
options |
An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style. See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight. |
Rect - A rectangle that is large enough to contain content when rendered in style.
Reserve layout space for a rectangle for displaying some contents with a specific style.
Name | Description |
---|---|
width | The width of the area you want. |
height | The height of the area you want. |
style | An optional GUIStyle to layout for. If specified, the style's padding value will be added to your sizes & its margin value will be used for spacing. |
options |
An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style. See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight. |
Rect - The rectanlge to put your control in.
Reserve layout space for a rectangle with a fixed content area.
Name | Description |
---|---|
minWidth | The minimum width of the area passed back. |
maxWidth | The maximum width of the area passed back. |
minHeight | The minimum width of the area passed back. |
maxHeight | The maximum width of the area passed back. |
style | An optional style. If specified, the style's padding value will be added to the sizes requested & the style's margin values will be used for spacing. |
options |
An optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style. See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight. |
Rect - a rectangle with size between minWidth & maxWidth on both axes
Reserve layout space for a flexible rect.
The rectangle's size will be between the min & max values.