In my game if I fire my projectile fast enough, it may pass through or even embed its self into other dynamic or static objects..
What's going on? If I slow the projectile down it behaves okay, but fast and weird stuff starts!
Any ideas?
Fast moving objects in Box2D can be labeled as bullets. Bullets will perform CCD with both static and
dynamic bodies. You should decide what bodies should be bullets based on your game design. If you
decide a body should be treated as a bullet, use the following setting.
bodyDef.bullet = true;
The bullet flag only affects dynamic bodies.
Box2D performs continuous collision sequentially, so bullets may miss fast moving bodies.