Skip to content

Latest commit

 

History

History
142 lines (75 loc) · 5.91 KB

File metadata and controls

142 lines (75 loc) · 5.91 KB
title description requireMSLicense
How to articles for the Graphics pipeline
These articles provide a details on how to use the Graphics API in MonoGame.
true

In This Section

This section demonstrates several graphical concepts divided into the following categories:

2D Sprite Rendering

This section walks through several core concepts related to sprite rendering, including drawing text to the screen.

Cameras

3D Rendering

This section walks through several core concepts related 3D rendering and math practices with MonoGame.

3D Collisions

  • Bounding Volumes and Collisions

    Collision detection determines whether objects in a game world overlap each other.

  • Selecting an Object with a Mouse

    Demonstrates how to check whether the mouse is positioned over a 3D object by creating a ray starting at the camera's near clipping plane and ending at its far clipping plane.

  • Testing for Collisions

    Demonstrates how to use the BoundingSphere class to check whether two models are colliding.