문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top