Menu
  • HOME
  • TAGS

What is a .Spritefont file, and how do I create it?

fonts,sprite,spritefont

There is no SpriteFont, you can import fonts directly.

Adding Special Characters to SpriteFont

xna,xna-4.0,spritefont

You need to use the decimal value for your characters instead, check out this site which will show you all of the representations. (You can change the value in the URL to find different characters) Your correct XML should be: <CharacterRegions> <CharacterRegion> <Start>&#9650;</Start> <End>&#9668;</End> </CharacterRegion> <CharacterRegion> <Start>&#32;</Start> <End>&#126;</End> </CharacterRegion> </CharacterRegions>...