20 lines
305 B
C#
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);
|
||
|
}
|
||
|
}
|