Merge pull request #27730 from ShyRed/fix3dphyscansleep
Fix missing re-activation of bullet physics sleep feature
This commit is contained in:
commit
7ba772d4ba
1 changed files with 2 additions and 0 deletions
|
@ -597,6 +597,8 @@ void RigidBodyBullet::set_state(PhysicsServer::BodyState p_state, const Variant
|
|||
if (!can_sleep) {
|
||||
// Can't sleep
|
||||
btBody->forceActivationState(DISABLE_DEACTIVATION);
|
||||
} else {
|
||||
btBody->forceActivationState(ACTIVE_TAG);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue