This commit is contained in:
2026-04-09 02:55:12 +05:30
parent cace0cc664
commit ced9c9fa35
13 changed files with 5758 additions and 1514 deletions
+20
View File
@@ -0,0 +1,20 @@
using TMPro;
using UnityEngine;
[RequireComponent(typeof(TMP_Text))]
public class CopyTextTMP : MonoBehaviour
{
public TMP_Text origin;
TMP_Text _text;
void Awake()
{
_text = GetComponent<TMP_Text>();
}
void Update()
{
_text.text = origin.text;
}
}
@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 981262cae0f1178448cf21d0273828dc