Projectile to Projectile hit detection.

So I just had to deal with a similar issue myself. Even when modifying the simulation rates, my projectiles were still just passing through objects. I ended up not using the projectile’s collision at all and instead running a line trace at regular intervals between the projectile’s previous location and its current location. When the line trace returns a result, I stop the projectile and use that result as the hit object.