mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	 4e226dc0d6
			
		
	
	
		4e226dc0d6
		
	
	
	
	
		
			
			- Added missing links to the Control node in BoxContainer - Added Oxford commas in BoxContainer and CanvasItem - Clarified ambiguous boolean wording in BoxContainer - Improved paragraphing in ScrollContainer's description - Simplified ControlPicker description
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8" ?>
 | |
| <class name="BoxContainer" inherits="Container" version="4.0">
 | |
| 	<brief_description>
 | |
| 		Base class for box containers.
 | |
| 	</brief_description>
 | |
| 	<description>
 | |
| 		Arranges child [Control] nodes vertically or horizontally, and rearranges them automatically when their minimum size changes.
 | |
| 	</description>
 | |
| 	<tutorials>
 | |
| 	</tutorials>
 | |
| 	<methods>
 | |
| 		<method name="add_spacer">
 | |
| 			<return type="void">
 | |
| 			</return>
 | |
| 			<argument index="0" name="begin" type="bool">
 | |
| 			</argument>
 | |
| 			<description>
 | |
| 				Adds a [Control] node to the box as a spacer. If [code]begin[/code] is [code]true[/code], it will insert the [Control] node in front of all other children.
 | |
| 			</description>
 | |
| 		</method>
 | |
| 	</methods>
 | |
| 	<members>
 | |
| 		<member name="alignment" type="int" setter="set_alignment" getter="get_alignment" enum="BoxContainer.AlignMode" default="0">
 | |
| 			The alignment of the container's children (must be one of [constant ALIGN_BEGIN], [constant ALIGN_CENTER], or [constant ALIGN_END]).
 | |
| 		</member>
 | |
| 	</members>
 | |
| 	<constants>
 | |
| 		<constant name="ALIGN_BEGIN" value="0" enum="AlignMode">
 | |
| 			Aligns children with the beginning of the container.
 | |
| 		</constant>
 | |
| 		<constant name="ALIGN_CENTER" value="1" enum="AlignMode">
 | |
| 			Aligns children with the center of the container.
 | |
| 		</constant>
 | |
| 		<constant name="ALIGN_END" value="2" enum="AlignMode">
 | |
| 			Aligns children with the end of the container.
 | |
| 		</constant>
 | |
| 	</constants>
 | |
| </class>
 |