Nikos Kastellanos 6c2eb5a816 v1.6.0.0 1 month ago
..
Atlas 3ba9fa94ec rename namespace 3 years ago
ContentReaders ea3ea950ef types 1 year ago
Properties 6c2eb5a816 v1.6.0.0 1 month ago
Aether.Atlas.NET4.XNA.csproj 0751af5991 update XNA outputPath 9 months ago
Aether.Atlas.csproj 6c2eb5a816 v1.6.0.0 1 month ago
README.md 4ef3422ea0 readme files 10 months ago

README.md

Aether.Graphics

Graphics library for Kni framework.

Graphics

  • 'TextureAtlas' - A TextureAtlas with a collection of sprites.

example:

// Initialize
textureAtlas = Content.Load<TextureAtlas>("atlas");

// Draw
Sprite sprite0 = textureAtlas.Sprites["spriteName0"];
spriteBatch.Draw(sprite0, new Vector2(128, 128), Color.White);
Sprite sprite1 = textureAtlas.Sprites["spriteName1"];
spriteBatch.Draw(sprite1, new Vector2(256 , 128), Color.White);