2021-12-25 05:58:26 +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);
}
}