言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Font.GetCharacterInfo

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public function GetCharacterInfo(ch: char, info: characterInfo, size: int = 0, style: FontStyle = FontStyle.Normal): bool;
public bool GetCharacterInfo(char ch, characterInfo info, int size = 0, FontStyle style = FontStyle.Normal);
public def GetCharacterInfo(ch as char, info as characterInfo, size as int = 0, style as FontStyle = FontStyle.Normal) as bool

Description

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

注意: これが必要となる唯一のケースはカスタムのテキスト レンダリングを実装したいときです。 文字 ch を指定した size および size がフォント テクスチャに存在するとき、 このメソッドは true を戻り値として、情報のなかにその文字のテクスチャ プレースメント情報が含まれます。 もし文字が存在しないとき メソッドは false を戻り値とします。もし size がゼロの場合、フォントのデフォルト サイズを使用します。 See Also: characterInfo.