|
|
9 months ago | |
|---|---|---|
| .. | ||
| Atlas | 3 years ago | |
| ContentReaders | 1 year ago | |
| Properties | 9 months ago | |
| Aether.Atlas.NET4.XNA.csproj | 9 months ago | |
| Aether.Atlas.csproj | 9 months ago | |
| README.md | 10 months ago | |
Graphics library for Kni framework.
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);