comment on CollisionEnd handling

This commit is contained in:
Quaternions 2023-09-18 18:07:08 -07:00
parent e67479a9bd
commit a5f203484b

View File

@ -684,7 +684,7 @@ impl crate::instruction::InstructionConsumer<PhysicsInstruction> for PhysicsStat
//check ground //check ground
match c.face { match c.face {
AabbFace::Top => { AabbFace::Top => {
//ground //this needs to be ContactConstrainAcceleration(gravity)
self.body.acceleration=self.gravity; self.body.acceleration=self.gravity;
}, },
_ => (), _ => (),