diff options
| author | mat <git@matdoes.dev> | 2025-10-12 23:01:54 +0300 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-10-12 23:01:54 +0300 |
| commit | ee2575794e91b9457a74a95daf1dcc707058cd58 (patch) | |
| tree | df725850ef18ded5ce3f6552e17095d0f704ae84 /azalea-physics/src | |
| parent | 1a1402954b07cd77615d0afc026c73b008787f51 (diff) | |
| download | azalea-drasl-ee2575794e91b9457a74a95daf1dcc707058cd58.tar.xz | |
upgrade deps and clean up lots of doc comments
Diffstat (limited to 'azalea-physics/src')
| -rw-r--r-- | azalea-physics/src/collision/entity_collisions.rs | 4 | ||||
| -rw-r--r-- | azalea-physics/src/local_player.rs | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/azalea-physics/src/collision/entity_collisions.rs b/azalea-physics/src/collision/entity_collisions.rs index af2db1f0..de70b2b9 100644 --- a/azalea-physics/src/collision/entity_collisions.rs +++ b/azalea-physics/src/collision/entity_collisions.rs @@ -14,8 +14,8 @@ use tracing::error; use super::VoxelShape; -/// This query matches on entities that we can collide with. That is, boats and -/// shulkers. +/// This query matches on entities that we can collide with (boats and +/// shulkers). /// /// If you want to use this in a more complex query, use /// [`CollidableEntityFilter`] as a filter instead. diff --git a/azalea-physics/src/local_player.rs b/azalea-physics/src/local_player.rs index f36e7ede..f2f213d8 100644 --- a/azalea-physics/src/local_player.rs +++ b/azalea-physics/src/local_player.rs @@ -1,8 +1,9 @@ use azalea_core::position::Vec2; use bevy_ecs::component::Component; -/// Component for entities that can move and sprint. Usually only in -/// [`LocalEntity`]s. +/// Component for entities that can move and sprint. +/// +/// Usually only present for [`LocalEntity`]s. /// /// [`LocalEntity`]: azalea_entity::LocalEntity #[derive(Default, Component, Clone)] |
