返回介绍

Font.GetCharacterInfo 获取字符信息

发布于 2019-12-18 15:37:41 字数 1672 浏览 1013 评论 0 收藏 0

JavaScript => public function GetCharacterInfo(ch: char, out info: characterInfo, size: int = 0, style: FontStyle = FontStyle.Normal): bool;
C# => public bool GetCharacterInfo(char ch, out characterInfo info, int size = 0, FontStyle style = FontStyle.Normal);

Parameters 参数

chhe character you need rendering information for.
infoReturns the CharacterInfo struct with the rendering information for the character (if available).
sizeThe size of the character (default value of zero will use font default size).
styleThe style of the character.

Description 描述

Get rendering info for a specific character.

获取指定字符的渲染信息。

Note: You should only ever need to use this when you want to implement your own text rendering. If the character ch with the specified size and style is present in the font texture, then this method will return true, and info will contain the texture placement information for that character. If the character is not present, this method returns false. If size is zero, it will use the default size for the font.

注意:当你想要实现自定义文本渲染时你只需要使用该属性。如果在字体纹理中该字符ch是指定大小和指定类型且存在的字体,那么该方法将会返回true,并且包含该字符纹理的位置信息。如若字符不存在,该方法返回false。如果字符大小为0,那么该属性将使用默认大小色字体。

See Also: characterInfo. Example at RequestCharactersInTexture.

font

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文