From e74ed047dbaf3877db4a89a2d589e992abd0bb11 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Thu, 14 Aug 2025 20:40:13 -0500 Subject: Sneaking (#237) * start implementing sneaking * fix horizontal_collision being inverted and cleanup * clippy * change dimensions and eye height based on pose * proper support for automatically crouching in certain cases * fix anticheat issues * add line to changelog and update a comment --- azalea-client/src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'azalea-client/src/lib.rs') diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs index 19e13253..c818d96a 100644 --- a/azalea-client/src/lib.rs +++ b/azalea-client/src/lib.rs @@ -21,6 +21,7 @@ mod plugins; pub mod test_utils; pub use account::{Account, AccountOpts}; +pub use azalea_physics::local_player::{PhysicsState, SprintDirection, WalkDirection}; pub use azalea_protocol::common::client_information::ClientInformation; // Re-export bevy-tasks so plugins can make sure that they're using the same // version. @@ -30,7 +31,5 @@ pub use client::{ StartClientOpts, start_ecs_runner, }; pub use events::Event; -pub use movement::{ - PhysicsState, SprintDirection, StartSprintEvent, StartWalkEvent, WalkDirection, -}; +pub use movement::{StartSprintEvent, StartWalkEvent}; pub use plugins::*; -- cgit v1.2.3