Skip to content

Commit

Permalink
Fix the doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
idanarye committed Oct 11, 2024
1 parent 08eb8a0 commit 0661053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
//! desired_velocity: player_input.direction_vector() * 10.0,
//!
//! // Turn the character in the movement direction:
//! desired_forward: player_input.direction_vector(),
//! desired_forward: Dir3::new(player_input.direction_vector()).ok(),
//!
//! // Must be larger than the height of the entity's center from the bottom of its
//! // collider, or else the character will not float and Tnua will not work properly:
Expand Down

0 comments on commit 0661053

Please sign in to comment.