2025-07-19 19:03:53 +08:00
|
|
|
using TMPro;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace Prefab
|
|
|
|
{
|
|
|
|
public class TextPrefab : MonoBehaviour
|
|
|
|
{
|
|
|
|
public TMP_Text text;
|
2025-08-28 16:20:24 +08:00
|
|
|
|
2025-07-19 19:03:53 +08:00
|
|
|
public string Label
|
|
|
|
{
|
2025-08-28 16:20:24 +08:00
|
|
|
get { return text.text; }
|
|
|
|
set { text.text = value; }
|
2025-07-19 19:03:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|