2022-01-05 19:11:58 +03:00

14 lines
256 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ShotUIView : MonoBehaviour
{
[SerializeField] private GameObject shotOn;
public void Switch()
{
shotOn.SetActive(!shotOn.activeSelf);
}
}