I've created a slider like so:
bpy.types.Scene.slider_value = bpy.props.FloatProperty(
default= 0,
min = -100,
max = 100,
)
In some case I need to go out over the previous min and max values. It is possible to simply redefine the Float Property ?