Article : Simple 2D Animated Sprite
by Casey Young
This article describes how to animate a 2D sprite sheet with XNA.
I have decided to break this article into seperate pages, starting with the basics, and then progressing towards making a simple animated sprite class.
This first part is a basic tutorial on how to make a simple animated sprite using a set of images. There are better ways to animate sprites, but this will get you the basics on how it is accomplished, so the code is simple, and not optimized.
Article: Simply Rendertargets
by Conkerjo
This article describes how to use RenderTargets to draw a portion of the screen or an image using SpriteBatch.
Article: Fading between 2 images
by Conkerjo
![]()
This article describes how to fade between 2 images using SpriteBatch
Fading between 2 images is a very simple task using XNA, I’ve seen a lot of different ways of doing this so here’s my take on the problem.