mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Add fill_mode to ProgressBar
This commit is contained in:
@@ -9,10 +9,27 @@
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
<members>
|
||||
<member name="fill_mode" type="int" setter="set_fill_mode" getter="get_fill_mode" default="0">
|
||||
The fill direction. See [enum FillMode] for possible values.
|
||||
</member>
|
||||
<member name="percent_visible" type="bool" setter="set_percent_visible" getter="is_percent_visible" default="true">
|
||||
If [code]true[/code], the fill percentage is displayed on the bar.
|
||||
</member>
|
||||
</members>
|
||||
<constants>
|
||||
<constant name="FILL_BEGIN_TO_END" value="0" enum="FillMode">
|
||||
The progress bar fills from begin to end horizontally, according to the language direction. If [method Control.is_layout_rtl] returns [code]false[/code], it fills from left to right, and if it returns [code]true[/code], it fills from right to left.
|
||||
</constant>
|
||||
<constant name="FILL_END_TO_BEGIN" value="1" enum="FillMode">
|
||||
The progress bar fills from end to begin horizontally, according to the language direction. If [method Control.is_layout_rtl] returns [code]false[/code], it fills from right to left, and if it returns [code]true[/code], it fills from left to right.
|
||||
</constant>
|
||||
<constant name="FILL_TOP_TO_BOTTOM" value="2" enum="FillMode">
|
||||
The progress fills from top to bottom.
|
||||
</constant>
|
||||
<constant name="FILL_BOTTOM_TO_TOP" value="3" enum="FillMode">
|
||||
The progress fills from bottom to top.
|
||||
</constant>
|
||||
</constants>
|
||||
<theme_items>
|
||||
<theme_item name="font_color" data_type="color" type="Color" default="Color(0.95, 0.95, 0.95, 1)">
|
||||
The color of the text.
|
||||
|
||||
Reference in New Issue
Block a user