「Unity/TMPro」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→TMProのテキストを追加) |
(→TMProのテキストを追加) |
||
行1: | 行1: | ||
− | == | + | ==2DのTMProのテキストを追加== |
#ヒエラルキーで右クリックで、UI/TextMeshProを追加 | #ヒエラルキーで右クリックで、UI/TextMeshProを追加 | ||
#Window/TextMeshPro/Import TMP Essential Resources | #Window/TextMeshPro/Import TMP Essential Resources | ||
#(サンプルを使いたい場合)Window/TextMeshPro/Import TMP Example and Extras | #(サンプルを使いたい場合)Window/TextMeshPro/Import TMP Example and Extras | ||
+ | |||
+ | ==2DのTMProのテキストをスクリプトで入れる== | ||
+ | <pre> | ||
+ | using TMPro; | ||
+ | public class SampleScene : MonoBehaviour | ||
+ | { | ||
+ | void Start() | ||
+ | { | ||
+ | TextMeshProUGUI textPro = GameObject.Find("Text (TMP)").GetComponent<TextMeshProUGUI>(); | ||
+ | textPro.text = "hoge"; | ||
+ | } | ||
+ | } | ||
+ | </pre> |
2021年9月6日 (月) 16:16時点における版
2DのTMProのテキストを追加
- ヒエラルキーで右クリックで、UI/TextMeshProを追加
- Window/TextMeshPro/Import TMP Essential Resources
- (サンプルを使いたい場合)Window/TextMeshPro/Import TMP Example and Extras
2DのTMProのテキストをスクリプトで入れる
using TMPro; public class SampleScene : MonoBehaviour { void Start() { TextMeshProUGUI textPro = GameObject.Find("Text (TMP)").GetComponent<TextMeshProUGUI>(); textPro.text = "hoge"; } }