diff options
author | Dana Olson <dana@shineuponthee.com> | 2014-11-08 03:30:49 -0500 |
---|---|---|
committer | Dana Olson <dana@shineuponthee.com> | 2014-11-08 03:30:49 -0500 |
commit | dae2f4c96f311191b9066e6fe78d23199cb5cf5f (patch) | |
tree | 0d364e2bf88473ab0261c0475998f5d86fc9185f /scene | |
parent | fc676fa6f8de6b0b24cf54ecfa3f9221c607095c (diff) |
add sane radius increment
Diffstat (limited to 'scene')
-rw-r--r-- | scene/resources/circle_shape_2d.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scene/resources/circle_shape_2d.cpp b/scene/resources/circle_shape_2d.cpp index 056be87e72..d6a9db690b 100644 --- a/scene/resources/circle_shape_2d.cpp +++ b/scene/resources/circle_shape_2d.cpp @@ -54,9 +54,7 @@ void CircleShape2D::_bind_methods() { ObjectTypeDB::bind_method(_MD("set_radius","radius"),&CircleShape2D::set_radius); ObjectTypeDB::bind_method(_MD("get_radius"),&CircleShape2D::get_radius); - - - ADD_PROPERTY( PropertyInfo(Variant::REAL,"radius"),_SCS("set_radius"),_SCS("get_radius") ); + ADD_PROPERTY( PropertyInfo(Variant::REAL,"radius",PROPERTY_HINT_RANGE,"0.01,16384,0.5"),_SCS("set_radius"),_SCS("get_radius") ); } |