diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-09-23 09:06:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 09:06:59 +0200 |
commit | cadba267b5b92d179a944ecb4f408076c9ccea28 (patch) | |
tree | 5ba1b76c5c477a36576f61d5d6730867e4210213 | |
parent | d21b3c26932d5a30edcc731cc3a00721bb721aac (diff) | |
parent | 6c18baee9c28f1771e8859541f399cb892894ae8 (diff) |
Merge pull request #42203 from rcorre/physicsmat_hint
Fix hints on PhysicsMaterial bounce/friction.
-rw-r--r-- | scene/resources/physics_material.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/physics_material.cpp b/scene/resources/physics_material.cpp index 2a5cd1101a..59bf8c0e13 100644 --- a/scene/resources/physics_material.cpp +++ b/scene/resources/physics_material.cpp @@ -43,9 +43,9 @@ void PhysicsMaterial::_bind_methods() { ClassDB::bind_method(D_METHOD("set_absorbent", "absorbent"), &PhysicsMaterial::set_absorbent); ClassDB::bind_method(D_METHOD("is_absorbent"), &PhysicsMaterial::is_absorbent); - ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "friction"), "set_friction", "get_friction"); + ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "friction", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_friction", "get_friction"); ADD_PROPERTY(PropertyInfo(Variant::BOOL, "rough"), "set_rough", "is_rough"); - ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "bounce"), "set_bounce", "get_bounce"); + ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "bounce", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_bounce", "get_bounce"); ADD_PROPERTY(PropertyInfo(Variant::BOOL, "absorbent"), "set_absorbent", "is_absorbent"); } |