From a769cad3599a27e961b65040b0120c780f0b7013 Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Fri, 24 Sep 2021 17:11:30 +0200 Subject: [PATCH] Make the RigidBody::setIsSleeping() method public --- CHANGELOG.md | 1 + include/reactphysics3d/body/RigidBody.h | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37433d0f..e63fb1e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ do not hesitate to take a look at the user manual. - Method RigidBody::applyLocalTorque() to apply a local-space torque to a rigid body - Method RigidBody::getForce() to get the total manually applied force on a rigid body - Method RigidBody::getTorque() to get the total manually applied torque on a rigid body + - Method RigidBody::setIsSleeping() is now public in order to wake up or put to sleep a rigid body - A cone limit can now be set to the ball-and-socket joint (this is useful for ragdolls) - Bridge scene has been added to the testbed application - Ragdoll scene has been added to the testbed application diff --git a/include/reactphysics3d/body/RigidBody.h b/include/reactphysics3d/body/RigidBody.h index 742cc2af..44fe46fa 100644 --- a/include/reactphysics3d/body/RigidBody.h +++ b/include/reactphysics3d/body/RigidBody.h @@ -53,9 +53,6 @@ class RigidBody : public CollisionBody { // -------------------- Methods -------------------- // - /// Set the variable to know whether or not the body is sleeping - void setIsSleeping(bool isSleeping); - /// Update whether the current overlapping pairs where this body is involed are active or not void resetOverlappingPairs(); @@ -141,6 +138,9 @@ class RigidBody : public CollisionBody { /// Set the variable to know if the gravity is applied to this rigid body void enableGravity(bool isEnabled); + /// Set the variable to know whether or not the body is sleeping + void setIsSleeping(bool isSleeping); + /// Return the linear velocity damping factor decimal getLinearDamping() const;