1. Home
  2. /
  3. Monogame
  4. /
  5. Simple Animation Example

Simple Animation Example - Monogame Typing CST Test

Loading…

Simple Animation Example — Monogame Code

Cycles through sprite frames to animate.

using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;

public class AnimationExample : Game
{
	private GraphicsDeviceManager _graphics;
	private SpriteBatch _spriteBatch;
	private Texture2D _spriteSheet;
	private int _frame = 0;
	private double _timer = 0;
	private Vector2 _position = new Vector2(100,100);
	public AnimationExample() { _graphics = new GraphicsDeviceManager(this); Content.RootDirectory = "Content"; IsMouseVisible = true; }
	protected override void LoadContent() { _spriteBatch = new SpriteBatch(GraphicsDevice); _spriteSheet = Content.Load<Texture2D>("sprite_sheet"); }
	protected override void Update(GameTime gameTime)
	{
		_timer += gameTime.ElapsedGameTime.TotalSeconds;
		if (_timer > 0.1) { _frame = (_frame + 1) % 4; _timer = 0; }
		base.Update(gameTime);
	}
	protected override void Draw(GameTime gameTime)
	{
		GraphicsDevice.Clear(Color.CornflowerBlue);
		_spriteBatch.Begin();
		_spriteBatch.Draw(_spriteSheet, _position, new Rectangle(32*_frame,0,32,32), Color.White);
		_spriteBatch.End();
		base.Draw(gameTime);
	}
}

Monogame Language Guide

MonoGame is an open-source, cross-platform game development framework written in C# and based on Microsoft’s XNA framework. It enables developers to build 2D and 3D games for multiple platforms using a single codebase.

Primary Use Cases

  • ▸2D and 3D games
  • ▸Cross-platform indie games
  • ▸PC, mobile, and console games
  • ▸Educational game development
  • ▸Prototyping and experimental game projects

Notable Features

  • ▸C# and .NET development
  • ▸2D and 3D rendering support
  • ▸Cross-platform deployment
  • ▸Low-level graphics API access (DirectX, OpenGL, Metal)
  • ▸Audio, input, networking, and shader support

Origin & Creator

MonoGame was created as an open-source implementation of Microsoft XNA in 2009 by Xamarin contributors, continuing XNA’s legacy for cross-platform development.

Industrial Note

MonoGame is popular for developers who want XNA-style development in C# with multi-platform deployment, including Windows, Mac, Linux, iOS, Android, consoles, and web via WebAssembly.

More Monogame Typing Exercises

MonoGame Simple Counter ExampleMonoGame Sprite Movement ExampleMonoGame FPS Display ExampleMonoGame Keyboard Input ExampleMonoGame Mouse Input ExampleMonoGame Simple Physics ExampleMonoGame Enemy Follow ExampleMonoGame Simple Shooting ExampleMonoGame Simple Random Walker Example

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher