diff options
author | MrPersonDev <simonashton37@gmail.com> | 2024-03-13 21:17:25 -0700 |
---|---|---|
committer | MrPersonDev <simonashton37@gmail.com> | 2024-03-13 21:17:25 -0700 |
commit | f63d76427dfbcbac1dfcdf7ac99f697ad156ed01 (patch) | |
tree | c4af2ed9de9e8f571b951baaf36a00a3452cf588 /scene/3d/physics | |
parent | da945ce6266ce27ba63b6b08dc0eb2414594f7cb (diff) | |
download | redot-engine-f63d76427dfbcbac1dfcdf7ac99f697ad156ed01.tar.gz |
Increase precision of rigidbody mass
Diffstat (limited to 'scene/3d/physics')
-rw-r--r-- | scene/3d/physics/rigid_body_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/physics/rigid_body_3d.cpp b/scene/3d/physics/rigid_body_3d.cpp index 54bd1c0d25..bc049f2c33 100644 --- a/scene/3d/physics/rigid_body_3d.cpp +++ b/scene/3d/physics/rigid_body_3d.cpp @@ -758,7 +758,7 @@ void RigidBody3D::_bind_methods() { GDVIRTUAL_BIND(_integrate_forces, "state"); - ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "mass", PROPERTY_HINT_RANGE, "0.01,1000,0.01,or_greater,exp,suffix:kg"), "set_mass", "get_mass"); + ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "mass", PROPERTY_HINT_RANGE, "0.001,1000,0.001,or_greater,exp,suffix:kg"), "set_mass", "get_mass"); ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "physics_material_override", PROPERTY_HINT_RESOURCE_TYPE, "PhysicsMaterial"), "set_physics_material_override", "get_physics_material_override"); ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "gravity_scale", PROPERTY_HINT_RANGE, "-8,8,0.001,or_less,or_greater"), "set_gravity_scale", "get_gravity_scale"); ADD_GROUP("Mass Distribution", ""); |