facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==サンプル== <pre> textobject.GetComponent<TextMeshProUGUI>(); textobject.text = "テストです"; </pre>」)
 
(サンプル)
行1: 行1:
 
==サンプル==
 
==サンプル==
 
<pre>
 
<pre>
 +
using TMPro;
 
textobject.GetComponent<TextMeshProUGUI>();
 
textobject.GetComponent<TextMeshProUGUI>();
 
textobject.text = "テストです";
 
textobject.text = "テストです";
 
</pre>
 
</pre>

2021年5月4日 (火) 23:59時点における版

サンプル

using TMPro;
textobject.GetComponent<TextMeshProUGUI>();
textobject.text = "テストです";