Add missed argument
num_decimals argument is missing in the `Slider`
```lua
function UI2D.SliderFloat(name, v, v_min, v_max, width, num_decimals, tooltip)
return Slider(e_slider_type.float, name, v, v_min, v_max, width, num_decimals, tooltip)
end
```