gpt4 book ai didi

xna - 为 SpriteFont 添加特殊字符

转载 作者:行者123 更新时间:2023-12-04 16:05:04 25 4
gpt4 key购买 nike

我正在尝试将箭头键 ►、◄、▲、▼ 添加到我的 spritefont。它们是 Alt16、Alt17、Alt30、Alt31。

这是我正在尝试做的事情。

<CharacterRegions>
<CharacterRegion>
<Start>&#16;</Start>
<End>&#17;</End>
</CharacterRegion>
<CharacterRegion>
<Start>&#30;</Start>
<End>&#126;</End>
</CharacterRegion>
</CharacterRegions>

我在 16/1730 时遇到错误。

错误是:

Error   6   Character ' ', hexadecimal value 0x3 is illegal in XML documents.  
Error 7 Character ' ', hexadecimal value 0x1e is illegal in XML documents.
Error 4 Character ' ', hexadecimal value 0x12 is illegal in XML documents.
Error 2 Character ' ', hexadecimal value 0x11 is illegal in XML documents.
Error 5 Character ' ', hexadecimal value 0x11 is illegal in XML documents.
Error 3 Character ' ', hexadecimal value 0x10 is illegal in XML documents.

谁能告诉我如何正确添加它们?

最佳答案

您需要为字符使用十进制值,查看 this将向您展示所有表示的网站。 (您可以更改 URL 中的值以查找不同的字符)

您正确的 XML 应该是:

<CharacterRegions>
<CharacterRegion>
<Start>&#9650;</Start>
<End>&#9668;</End>
</CharacterRegion>
<CharacterRegion>
<Start>&#32;</Start>
<End>&#126;</End>
</CharacterRegion>
</CharacterRegions>

关于xna - 为 SpriteFont 添加特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23585878/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com