IMGUI_APIboolDragFloat(constchar*label,float*v,floatv_step=1.0f,floatv_min=0.0f,floatv_max=0.0f,constchar*display_format="%.3f");// If v_max >= v_max we have no bound
IMGUI_APIboolDragInt(constchar*label,int*v,intv_step=1,intv_min=0.0f,intv_max=0.0f,constchar*display_format="%.0f");// If v_max >= v_max we have no bound
// Widgets: Sliders (tip: ctrl+click on a slider to input text)
IMGUI_APIboolSliderFloat(constchar*label,float*v,floatv_min,floatv_max,constchar*display_format="%.3f",floatpower=1.0f);// adjust display_format to decorate the value with a prefix or a suffix. Use power!=1.0 for logarithmic sliders