Remove unused variables

This commit is contained in:
Jan Nils Ferner
2023-01-28 01:08:22 +01:00
parent 456c62e2ff
commit 3b537a20c2

View File

@@ -193,8 +193,7 @@ impl KinematicCharacterController {
let mut translation_remaining = desired_translation;
// Check if we are grounded at the initial position.
let grounded_at_starting_pos = self.detect_grounded_status_and_apply_friction(
self.detect_grounded_status_and_apply_friction(
dt,
bodies,
colliders,
@@ -298,8 +297,7 @@ impl KinematicCharacterController {
}
}
// If needed, and if we are not already grounded, snap to the ground.
//if grounded_at_starting_pos {
// If needed, snap to the ground.
self.snap_to_ground(
bodies,
colliders,
@@ -310,7 +308,6 @@ impl KinematicCharacterController {
filter,
&mut result,
);
//}
// Return the result.
result