Skip to content

Commit

Permalink
fix lock_rotations doesn't work both ways
Browse files Browse the repository at this point in the history
  • Loading branch information
Triuman committed Aug 10, 2023
1 parent f7b02f2 commit fd0c8d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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

0 comments on commit fd0c8d3

Please sign in to comment.