Nikos Kastellanos c5c18cb3a0 GenerateAssemblyInfo 10 bulan lalu
..
Atlas 3ba9fa94ec rename namespace 3 tahun lalu
ContentReaders ea3ea950ef types 1 tahun lalu
Properties c5c18cb3a0 GenerateAssemblyInfo 10 bulan lalu
Aether.Atlas.NET4.XNA.csproj 3b498c2bca seperate Artifacts 3 tahun lalu
Aether.Atlas.csproj c5c18cb3a0 GenerateAssemblyInfo 10 bulan lalu
README.md 4ef3422ea0 readme files 10 bulan lalu

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);