Question

Does each spriteBatch.DrawString(spriteFont, "text", new Vector2(10, 20), Color.White) call draw every letter of the text string separately (calls spriteBatch.Draw for each letter each frame), or does it make one texture and redraws it, or does it work in some other way?

Était-ce utile?

La solution

It internally calls SpriteBatch.Draw() for each letter. then when you call SpriteBatch.End(), it hands the whole batch and any other Texture2D sprites you may have drawn since calling .Begin() to the GPU for rendering.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top