Unity/Csharp/TryGetComponent
提供: 初心者エンジニアの簡易メモ
2022年7月21日 (木) 06:05時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==サンプル== <pre> if (gameObject.TryGetComponent<TextMeshProUGUI>(out var textPro)) { textPro.text = "hoge"; } </pre> 参考:https://zenn.dev/fuqunaga/articl...」)
サンプル
if (gameObject.TryGetComponent<TextMeshProUGUI>(out var textPro)) { textPro.text = "hoge"; }