diff options
Diffstat (limited to 'azalea-entity/src')
| -rw-r--r-- | azalea-entity/src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/azalea-entity/src/lib.rs b/azalea-entity/src/lib.rs index 7b971c27..0058708f 100644 --- a/azalea-entity/src/lib.rs +++ b/azalea-entity/src/lib.rs @@ -253,9 +253,11 @@ impl Eq for LookDirection {} /// bounding box. #[derive(Debug, Component, Clone, Default)] pub struct Physics { - /// How fast the entity is moving. + /// How fast the entity is moving. Sometimes referred to as the delta + /// movement. /// - /// Sometimes referred to as the delta movement. + /// Note that our Y velocity will be approximately -0.0784 when we're on the + /// ground due to how Minecraft applies gravity. pub velocity: Vec3, pub vec_delta_codec: VecDeltaCodec, |
