mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	 81064cc239
			
		
	
	
		81064cc239
		
			
		
	
	
	
	
		
			
			We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8" ?>
 | |
| <class name="StyleBoxLine" inherits="StyleBox" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
 | |
| 	<brief_description>
 | |
| 		A [StyleBox] that displays a single line of a given color and thickness.
 | |
| 	</brief_description>
 | |
| 	<description>
 | |
| 		A [StyleBox] that displays a single line of a given color and thickness. The line can be either horizontal or vertical. Useful for separators.
 | |
| 	</description>
 | |
| 	<tutorials>
 | |
| 	</tutorials>
 | |
| 	<members>
 | |
| 		<member name="color" type="Color" setter="set_color" getter="get_color" default="Color(0, 0, 0, 1)">
 | |
| 			The line's color.
 | |
| 		</member>
 | |
| 		<member name="grow_begin" type="float" setter="set_grow_begin" getter="get_grow_begin" default="1.0">
 | |
| 			The number of pixels the line will extend before the [StyleBoxLine]'s bounds. If set to a negative value, the line will begin inside the [StyleBoxLine]'s bounds.
 | |
| 		</member>
 | |
| 		<member name="grow_end" type="float" setter="set_grow_end" getter="get_grow_end" default="1.0">
 | |
| 			The number of pixels the line will extend past the [StyleBoxLine]'s bounds. If set to a negative value, the line will end inside the [StyleBoxLine]'s bounds.
 | |
| 		</member>
 | |
| 		<member name="thickness" type="int" setter="set_thickness" getter="get_thickness" default="1">
 | |
| 			The line's thickness in pixels.
 | |
| 		</member>
 | |
| 		<member name="vertical" type="bool" setter="set_vertical" getter="is_vertical" default="false">
 | |
| 			If [code]true[/code], the line will be vertical. If [code]false[/code], the line will be horizontal.
 | |
| 		</member>
 | |
| 	</members>
 | |
| </class>
 |