From a5b4c1d64f799c5f1bceb874eac46f80d949445c Mon Sep 17 00:00:00 2001 From: "Daniel J. Ramirez" Date: Wed, 27 Apr 2016 16:09:48 -0500 Subject: [PATCH] GridContainer, CheckBox documentation, descriptions for Vector2 and CenterContainer.set_use_top_left --- doc/base/classes.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/base/classes.xml b/doc/base/classes.xml index de19b1c8cad..f7ef7ef1a8c 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -7095,6 +7095,7 @@ + This function will anchor the container children to the top left corner of the the container boundaries, moving all its children to that position, (the children new center will be the top left corner of the container). @@ -7109,8 +7110,10 @@ + Binary choice user interface widget + A checkbox allows the user to make a binary choice (choosing only one of two posible options), for example Answer 'yes' or 'no'. @@ -13388,20 +13391,24 @@ Returns an empty String "" at the end of the list. + Grid container used to arrange elements in a grid like layout + Grid container will arrange its children in a grid like structure, the grid columns are specified using the [method set_columns] method 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. Notice that grid layout will preserve the columns and rows for every size of the container. + Sets the numbers of columns in the container, then reorder its children to accommodate the new layout + Returns the number of columns in this container @@ -40149,6 +40156,7 @@ This method controls whether the position between two cached points is interpola Vector used for 2D Math. + 2-element structure that can be used to represent positions in 2d-space, or any other pair of numeric values.