Skip to content

Commit

Permalink
Merge pull request #62708 from madmiraal/fix-40508-3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga committed Jul 7, 2022
2 parents b4fa512 + 25bedad commit 600c1c4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/bullet/rigid_body_bullet.cpp
Expand Up @@ -917,6 +917,13 @@ void RigidBodyBullet::reload_space_override_modificator() {
return;
}

if (omit_forces_integration) {
// Custom behaviour.
btBody->setGravity(btVector3(0, 0, 0));
btBody->setDamping(0, 0);
return;
}

Vector3 newGravity(0.0, 0.0, 0.0);
real_t newLinearDamp = MAX(0.0, linearDamp);
real_t newAngularDamp = MAX(0.0, angularDamp);
Expand Down

0 comments on commit 600c1c4

Please sign in to comment.