facebook twitter hatena line email

「Unity/TMPro/Text」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(2DのTMProのテキストをスクリプトで入れる(WebGL))
行4: 行4:
 
#(サンプルを使いたい場合)Window/TextMeshPro/Import TMP Example and Extras
 
#(サンプルを使いたい場合)Window/TextMeshPro/Import TMP Example and Extras
  
==2DのTMProのテキストをスクリプトで入れる(WebGL)==
+
==2DのTMProのテキストをスクリプトで入れる(uGUI)==
 
<pre>
 
<pre>
 
using TMPro;
 
using TMPro;

2022年9月4日 (日) 23:24時点における版

2DのTMProのテキストを追加

  1. ヒエラルキーで右クリックで、UI/TextMeshProを追加
  2. Window/TextMeshPro/Import TMP Essential Resources
  3. (サンプルを使いたい場合)Window/TextMeshPro/Import TMP Example and Extras

2DのTMProのテキストをスクリプトで入れる(uGUI)

using TMPro;
public class SampleScene : MonoBehaviour
{
    void Start()
    {
        TextMeshProUGUI textPro = GameObject.Find("Text (TMP)").GetComponent<TextMeshProUGUI>();
        textPro.text = "hoge";
    }
}

2DのTMProのテキストをスクリプトで入れる(通常)

using TMPro;
public class SampleScene : MonoBehaviour
{
    void Start()
    {
        TextMeshPro textPro = GameObject.Find("Text (TMP)").GetComponent<TextMeshPro>();
        textPro.text = "hoge";
    }
}