How to make a disk like Slider in Godot?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By aryantr9

The only available slider in Godot are HSlider and VSlider.Is there any way to get or create a disk/round slider like timers?

They both extends Slider. I guess you gotta write one yourself based on that if you’re so inclined.

Dlean Jeans | 2019-06-08 10:54

I agree with Dlean Jeans. See “Custom GUI controls” to get an idea how and where to start.

Thomas Karcher | 2019-06-08 13:33

If you just need circular progress bars (without any input interaction), you can use a TextureProgress node with the Clockwise or Counterclockwise progress bar modes.

Calinou | 2019-06-10 20:11

Thanks.it helped @calinou

aryantr9 | 2019-06-28 05:07