_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/Scene_main/main_RedDot.cs

20 lines
305 B
C#

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);
}
}