Fix operator precedence in PhysicsBody2D::set_weight
Fixes #16038.
(cherry picked from commit 3b01bf94ad
)
This commit is contained in:
parent
681c22375b
commit
5955526b25
|
@ -536,12 +536,12 @@ real_t RigidBody2D::get_inertia() const {
|
||||||
|
|
||||||
void RigidBody2D::set_weight(real_t p_weight) {
|
void RigidBody2D::set_weight(real_t p_weight) {
|
||||||
|
|
||||||
set_mass(p_weight / real_t(GLOBAL_DEF("physics/2d/default_gravity", 98)) / 10);
|
set_mass(p_weight / (real_t(GLOBAL_DEF("physics/2d/default_gravity", 98)) / 10));
|
||||||
}
|
}
|
||||||
|
|
||||||
real_t RigidBody2D::get_weight() const {
|
real_t RigidBody2D::get_weight() const {
|
||||||
|
|
||||||
return mass * real_t(GLOBAL_DEF("physics/2d/default_gravity", 98)) / 10;
|
return mass * (real_t(GLOBAL_DEF("physics/2d/default_gravity", 98)) / 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
void RigidBody2D::set_friction(real_t p_friction) {
|
void RigidBody2D::set_friction(real_t p_friction) {
|
||||||
|
|
Loading…
Reference in New Issue