Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/CurvedUI/CUI_TMPChecker.cs
2026-02-21 16:45:37 +08:00

24 lines
408 B
C#

using UnityEngine;
namespace CurvedUI
{
public class CUI_TMPChecker : MonoBehaviour
{
[SerializeField]
private GameObject testMsg;
[SerializeField]
private GameObject enabledMsg;
[SerializeField]
private GameObject disabledMsg;
private void Start()
{
testMsg.gameObject.SetActive(false);
enabledMsg.gameObject.SetActive(false);
disabledMsg.gameObject.SetActive(true);
}
}
}