From f76d417d8a352eecb9ecdd30215e78cbee85246d Mon Sep 17 00:00:00 2001 From: floppyhammer Date: Fri, 19 Feb 2021 14:02:59 +0800 Subject: Add fill_mode to ProgressBar --- doc/classes/ProgressBar.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'doc/classes') diff --git a/doc/classes/ProgressBar.xml b/doc/classes/ProgressBar.xml index 1e9ab7c375..8a781c51fb 100644 --- a/doc/classes/ProgressBar.xml +++ b/doc/classes/ProgressBar.xml @@ -9,10 +9,27 @@ + + The fill direction. See [enum FillMode] for possible values. + If [code]true[/code], the fill percentage is displayed on the bar. + + + 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. + + + 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. + + + The progress fills from top to bottom. + + + The progress fills from bottom to top. + + The color of the text. -- cgit v1.2.3