SliderFloat

Widgets: Regular Sliders - CTRL+Click on any slider to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp. - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. "%.3f" -> 1.234; "%5.2f secs" -> 01.23 secs; "Biscuit: %.0f" -> Biscuit: 1; etc. - Format string may also be set to NULL or use the default format ("%f" or "%d"). - Legacy: Pre-1.78 there are SliderXXX() function signatures that take a final float power=1.0f' argument instead of the ImGuiSliderFlags flags=0' argument. If you get a warning converting a float to ImGuiSliderFlags, read https://github.com/ocornut/imgui/issues/3361

pure @nogc nothrow @trusted
bool
SliderFloat
(
scope const(char)* label
,
scope float* v
,
float v_min
,
float v_max
)

Meta