25 lines
405 B
C#
25 lines
405 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class StartScreenView : MonoBehaviour
|
|
{
|
|
[SerializeField] private GameObject startScreen;
|
|
public Button tapToStartButton;
|
|
|
|
private void Start()
|
|
{
|
|
//startScreen.SetActive(true);
|
|
}
|
|
|
|
public void Show()
|
|
{
|
|
startScreen.SetActive(true);
|
|
}
|
|
|
|
public void Hide()
|
|
{
|
|
startScreen.SetActive(false);
|
|
}
|
|
|
|
}
|