using System.Collections; using System.Collections.Generic; using TMPro; using UnityEngine; public class TextMirror : MonoBehaviour { public TMP_Text source; TMP_Text target; void Start() { target=GetComponent(); } void Update() { target.text = source.text; } }