mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-30 21:21:10 +00:00 
			
		
		
		
	 62256e0b3a
			
		
	
	
		62256e0b3a
		
	
	
	
	
		
			
			See https://github.com/godotengine/godot-docs/issues/3837.
(cherry picked from commit eaa52cbb36)
		
	
			
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8" ?>
 | |
| <class name="VSlider" inherits="Slider" version="3.2">
 | |
| 	<brief_description>
 | |
| 		Vertical slider.
 | |
| 	</brief_description>
 | |
| 	<description>
 | |
| 		Vertical slider. See [Slider]. This one goes from bottom (min) to top (max).
 | |
| 		[b]Note:[/b] The [signal Range.changed] and [signal Range.value_changed] signals are part of the [Range] class which this class inherits from.
 | |
| 	</description>
 | |
| 	<tutorials>
 | |
| 	</tutorials>
 | |
| 	<methods>
 | |
| 	</methods>
 | |
| 	<members>
 | |
| 		<member name="size_flags_horizontal" type="int" setter="set_h_size_flags" getter="get_h_size_flags" override="true" default="0" />
 | |
| 		<member name="size_flags_vertical" type="int" setter="set_v_size_flags" getter="get_v_size_flags" override="true" default="1" />
 | |
| 	</members>
 | |
| 	<constants>
 | |
| 	</constants>
 | |
| 	<theme_items>
 | |
| 		<theme_item name="grabber" type="Texture">
 | |
| 			The texture for the grabber (the draggable element).
 | |
| 		</theme_item>
 | |
| 		<theme_item name="grabber_area" type="StyleBox">
 | |
| 			The background of the area below the grabber.
 | |
| 		</theme_item>
 | |
| 		<theme_item name="grabber_area_highlight" type="StyleBox">
 | |
| 		</theme_item>
 | |
| 		<theme_item name="grabber_disabled" type="Texture">
 | |
| 			The texture for the grabber when it's disabled.
 | |
| 		</theme_item>
 | |
| 		<theme_item name="grabber_highlight" type="Texture">
 | |
| 			The texture for the grabber when it's focused.
 | |
| 		</theme_item>
 | |
| 		<theme_item name="slider" type="StyleBox">
 | |
| 			The background for the whole slider. Determines the width of the [code]grabber_area[/code].
 | |
| 		</theme_item>
 | |
| 		<theme_item name="tick" type="Texture">
 | |
| 			The texture for the ticks, visible when [member Slider.tick_count] is greater than 0.
 | |
| 		</theme_item>
 | |
| 	</theme_items>
 | |
| </class>
 |