Enum ProgressBar.FillModeEnum
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum ProgressBar.FillModeEnum : long
Fields
BeginToEnd = 0
The progress bar fills from begin to end horizontally, according to the language direction. If IsLayoutRtl() returns
false
, it fills from left to right, and if it returnstrue
, it fills from right to left.BottomToTop = 3
The progress fills from bottom to top.
EndToBegin = 1
The progress bar fills from end to begin horizontally, according to the language direction. If IsLayoutRtl() returns
false
, it fills from right to left, and if it returnstrue
, it fills from left to right.TopToBottom = 2
The progress fills from top to bottom.