2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2021-04-26 13:14:51 +02:00
<class name= "GridContainer" inherits= "Container" version= "3.4" >
2017-09-12 22:42:36 +02:00
<brief_description >
2020-09-07 01:41:08 +02:00
Grid container used to arrange Control-derived children in a grid like layout.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2020-09-07 01:41:08 +02:00
GridContainer will arrange its Control-derived children in a grid like structure, the grid columns are specified using the [member columns] property and the number of rows will be equal to the number of children in the container divided by the number of columns. For example, if the container has 5 children, and 2 columns, there will be 3 rows in the container.
2019-09-08 07:20:34 +02:00
Notice that grid layout will preserve the columns and rows for every size of the container, and that empty columns will be expanded automatically.
2020-09-07 01:41:08 +02:00
[b]Note:[/b] GridContainer only works with child nodes inheriting from Control. It won't rearrange child nodes inheriting from Node2D.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2020-10-01 10:34:47 +02:00
<link title= "OS Test Demo" > https://godotengine.org/asset-library/asset/677</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "columns" type= "int" setter= "set_columns" getter= "get_columns" default= "1" >
2020-09-07 01:41:08 +02:00
The number of columns in the [GridContainer]. If modified, [GridContainer] reorders its Control-derived children to accommodate the new layout.
2017-09-12 22:42:36 +02:00
</member>
2019-09-24 13:34:03 +02:00
<member name= "mouse_filter" type= "int" setter= "set_mouse_filter" getter= "get_mouse_filter" override= "true" enum= "Control.MouseFilter" default= "1" />
2017-09-12 22:42:36 +02:00
</members>
<constants >
</constants>
<theme_items >
2019-06-29 12:38:01 +02:00
<theme_item name= "hseparation" type= "int" default= "4" >
2020-03-03 19:21:21 +01:00
The horizontal separation of children nodes.
2017-09-12 22:42:36 +02:00
</theme_item>
2019-06-29 12:38:01 +02:00
<theme_item name= "vseparation" type= "int" default= "4" >
2020-03-03 19:21:21 +01:00
The vertical separation of children nodes.
2017-09-12 22:42:36 +02:00
</theme_item>
</theme_items>
</class>