using System.Collections; using System.Collections.Generic; using UnityEngine; public class main_RedDot : MonoBehaviour { public GameObject redDot; public void ShowRedDot() { redDot.SetActive(true); } public void HideRedDot() { redDot.SetActive(false); } }