Enum ProgressBar.FillModeEnum
- Namespace
- Godot
- Assembly
- GodotSharp.dll
public enum ProgressBar.FillModeEnum : long
Fields
BeginToEnd = 0The 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 = 3The progress fills from bottom to top.
EndToBegin = 1The 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 = 2The progress fills from top to bottom.