Monogame Physics Tutorials

This category is for tutorials that involve physics. Proper physics in games is important, so the game acts like it should. Like the math tutorials, these tutorials may not have as much Monogame coding since they focus on the physics involved, but these tutorials usually explain how to implement the physics in your game.

physics100.png

1 - Basic Collision Detection

This tutorial covers the basics of collision detection. In most 3D games, like in the real world, two objects shouldn't overlap. Or if they do, you should know about it, because it means some important event has happened. This tutorial will discuss how to implement simple collision detection in a MonoGame project.
Basic Collision Detection


physics100.png

2 - Collision Detection with Circles

This tutorial continues with some of the concepts in the first tutorial, but we'll create a Circle type to use in collision detection as well. This tutorial will cover code for point-in-circle checking, as well as intersecting circle checking.
Collision Detection with Circles