Skip to content

Commit

Permalink
Merge pull request #511 from Triuman/master
Browse files Browse the repository at this point in the history
fix lock_translations & lock_rotations doesn't work both ways
  • Loading branch information
sebcrozet authored Sep 9, 2023
2 parents 04e05d9 + fd0c8d3 commit 7d2111d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dynamics/rigid_body.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ impl RigidBody {
#[inline]
/// Locks or unlocks all the rotations of this rigid-body.
pub fn lock_rotations(&mut self, locked: bool, wake_up: bool) {
if !self.mprops.flags.contains(LockedAxes::ROTATION_LOCKED) {
if locked != self.mprops.flags.contains(LockedAxes::ROTATION_LOCKED) {
if self.is_dynamic() && wake_up {
self.wake_up(true);
}
Expand Down Expand Up @@ -255,7 +255,7 @@ impl RigidBody {
#[inline]
/// Locks or unlocks all the rotations of this rigid-body.
pub fn lock_translations(&mut self, locked: bool, wake_up: bool) {
if !self.mprops.flags.contains(LockedAxes::TRANSLATION_LOCKED) {
if locked != self.mprops.flags.contains(LockedAxes::TRANSLATION_LOCKED) {
if self.is_dynamic() && wake_up {
self.wake_up(true);
}
Expand Down

0 comments on commit 7d2111d

Please sign in to comment.