Version: 2017.1
public bool GetCharacterInfo (char ch, out characterInfo info, int size= 0, FontStyle style= FontStyle.Normal);

パラメーター

ch 情報を描画する必要のある文字
info (可能な場合)文字の描画情報とともに CharacterInfo 構造体を返します。
size 文字のサイズ(デフォルトの値である 0 の場合、フォントのデフォルトサイズを使用します)。
style 文字スタイル

説明

特定の文字のレンダリング情報を取得します。

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.

See Also: characterInfo. Example at RequestCharactersInTexture.