exit strafe tick early if zero control dir
This commit is contained in:
parent
27a46093ae
commit
053514fa4a
@ -1445,8 +1445,10 @@ impl crate::instruction::InstructionConsumer<PhysicsInstruction> for PhysicsStat
|
||||
}
|
||||
},
|
||||
PhysicsInstruction::StrafeTick => {
|
||||
let control_dir=self.style.get_control_dir(self.controls);
|
||||
if control_dir!=Planar64Vec3::ZERO{
|
||||
let camera_mat=self.camera.simulate_move_rotation_y(self.camera.mouse.lerp(&self.next_mouse,self.time).x);
|
||||
let control_dir=camera_mat*self.style.get_control_dir(self.controls);
|
||||
let control_dir=camera_mat*control_dir;
|
||||
//normalize but careful for zero
|
||||
let d=self.body.velocity.dot(control_dir);
|
||||
if d<self.style.mv {
|
||||
@ -1458,6 +1460,7 @@ impl crate::instruction::InstructionConsumer<PhysicsInstruction> for PhysicsStat
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
PhysicsInstruction::ReachWalkTargetVelocity => {
|
||||
match &mut self.move_state{
|
||||
MoveState::Air|MoveState::Water=>(),
|
||||
|
Loading…
Reference in New Issue
Block a user