mirror of
https://github.com/godotengine/godot.git
synced 2025-01-04 01:00:44 +00:00
Refactor the BoxContainer and BoxShape classes
This commit is contained in:
parent
62cb43bb8d
commit
f818448199
@ -1,10 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<class name="BoxContainer" inherits="Container" category="Core" version="3.0.alpha.custom_build">
|
<class name="BoxContainer" inherits="Container" category="Core" version="3.0.alpha.custom_build">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
Base class for Box containers.
|
Base class for box containers.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
Base class for Box containers. It arranges children controls vertically or horizontally, and rearranges them automatically when their minimum size changes.
|
Arranges child controls vertically or horizontally, and rearranges the controls automatically when their minimum size changes.
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
@ -17,8 +17,7 @@
|
|||||||
<argument index="0" name="begin" type="bool">
|
<argument index="0" name="begin" type="bool">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Add a control to the box as a spacer.
|
Adds a control to the box as a spacer. If [code]true[/code], [i]begin[/i] will insert the spacer control in front of other children.
|
||||||
If [i]begin[/i] is true the spacer control will be inserted in front of other children.
|
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="get_alignment" qualifiers="const">
|
<method name="get_alignment" qualifiers="const">
|
||||||
@ -40,17 +39,18 @@
|
|||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="alignment" type="int" setter="set_alignment" getter="get_alignment" enum="BoxContainer.AlignMode">
|
<member name="alignment" type="int" setter="set_alignment" getter="get_alignment" enum="BoxContainer.AlignMode">
|
||||||
|
The alignment of the container's children (must be one of ALIGN_BEGIN, ALIGN_CENTER, or ALIGN_END).
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
<constant name="ALIGN_BEGIN" value="0">
|
<constant name="ALIGN_BEGIN" value="0">
|
||||||
Align children with beginning of the container.
|
Aligns children with the beginning of the container.
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="ALIGN_CENTER" value="1">
|
<constant name="ALIGN_CENTER" value="1">
|
||||||
Align children with center of the container.
|
Aligns children with the center of the container.
|
||||||
</constant>
|
</constant>
|
||||||
<constant name="ALIGN_END" value="2">
|
<constant name="ALIGN_END" value="2">
|
||||||
Align children with end of the container.
|
Aligns children with the end of the container.
|
||||||
</constant>
|
</constant>
|
||||||
</constants>
|
</constants>
|
||||||
</class>
|
</class>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
Box shape resource.
|
Box shape resource.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
Box shape resource, which can be set into a [PhysicsBody] or area.
|
3D box shape that can be a child of a [PhysicsBody] or [Area].
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
@ -30,6 +30,7 @@
|
|||||||
</methods>
|
</methods>
|
||||||
<members>
|
<members>
|
||||||
<member name="extents" type="Vector3" setter="set_extents" getter="get_extents">
|
<member name="extents" type="Vector3" setter="set_extents" getter="get_extents">
|
||||||
|
The shape's half extents.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
<constants>
|
||||||
|
Loading…
Reference in New Issue
Block a user