From a5f203484be15b91a9bd8b838587c7a4c964ecba Mon Sep 17 00:00:00 2001 From: Quaternions Date: Mon, 18 Sep 2023 18:07:08 -0700 Subject: [PATCH] comment on CollisionEnd handling --- src/body.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/body.rs b/src/body.rs index f20a602b..bdee0eb3 100644 --- a/src/body.rs +++ b/src/body.rs @@ -684,7 +684,7 @@ impl crate::instruction::InstructionConsumer for PhysicsStat //check ground match c.face { AabbFace::Top => { - //ground + //this needs to be ContactConstrainAcceleration(gravity) self.body.acceleration=self.gravity; }, _ => (),