Tagged Questions
1
vote
1answer
268 views
Effective SpriteBatching in XNA?
What is an example of efficient sprite batching in XNA?
I don't know when (if ever) I would do something like this:
spriteBatch.Begin()
DrawSprite1();
spriteBatch.End();
spriteBatch.Begin();
...