Making a projectile bounce?

Hello! I have a question on making projectile bounce. How?

I have tried setting the bounciness to anything from 0.2 to 99999 and my projectile will at best do one miserable hop and then just spin in circles on the ground. I’m trying to make a grenade projectile that bounces a bit for added effect.

The projectile has the projectile collision preset.


Similarly, I noticed that “On Projectile Bounce” never gets called.
What have I done wrong? How can this be fixed?

You might be simulating physics on the root collider. Don’t, the Projectile Movement Component will do it for you. Otherwise, the simulation will take over and the PMC will be unable to do anything about it.

This is it! Thank you!!

1 Like