shedaniel / AutoConfig

Fork of Auto Config.
Apache License 2.0
28 stars 13 forks source link

BoundedDiscrete for Floats/Doubles #4

Open naqaden opened 4 years ago

naqaden commented 4 years ago

The option to render sliders for bounded floats/doubles would improve UX for my mod.

I have configs for RGBA values and just like in CSS, RGB values are between 0 and 255 while A is between 0.0 and 1.0. Currently only the RGB values can have sliders, or I have to change A into a 0-255 int.

shedaniel commented 4 years ago

Consider using @ConfigEntry.ColorPicker on int or long

naqaden commented 4 years ago

I was following the Annotations page, but I'll check the class directly. Thanks for the tip!