Merge branch 'master' into develop

This commit is contained in:
Daniel Chappuis 2020-07-07 18:31:17 +02:00
commit 6d7d0d7a23
2 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@ class PhysicsWorld {
Vector3 getGravity() const;
/// Set the gravity vector of the world
void setGravity(Vector3& gravity);
void setGravity(const Vector3& gravity);
/// Return if the gravity is on
bool isGravityEnabled() const;

View File

@ -975,7 +975,7 @@ void PhysicsWorld::setNbIterationsPositionSolver(uint nbIterations) {
/**
* @param gravity The gravity vector (in meter per seconds squared)
*/
void PhysicsWorld::setGravity(Vector3& gravity) {
void PhysicsWorld::setGravity(const Vector3& gravity) {
mConfig.gravity = gravity;