ソースコード 使い方 var text = GetComponent<TMP_Text>(); text.SetText( 123 ); 検証 using TMPro; using UnityEngine; using UnityEngine.Profiling; public class Example : MonoBehaviour { public TMP_Text m_text; private void Update() { var num = 25; var samplerA = CustomSampler.Create( "# ToString" ); samplerA.Begin(); m_text.text = num.ToString(); samplerA.End(); var samplerB = CustomSampler.Create( "# TMP_Text.
