42 lines
922 B
C#
42 lines
922 B
C#
using System;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
using UnityEngine.UI;
|
|
using Object = UnityEngine.Object;
|
|
|
|
namespace UI
|
|
{
|
|
public class MainMenuUI : MonoBehaviour
|
|
{
|
|
[SerializeField] private String mainScene;
|
|
[SerializeField] private Button exitButton;
|
|
|
|
private void OnEnable()
|
|
{
|
|
DetectIfBrowser();
|
|
}
|
|
|
|
private void DetectIfBrowser()
|
|
{
|
|
if (Application.platform == RuntimePlatform.WebGLPlayer)
|
|
{
|
|
exitButton.gameObject.SetActive(false);
|
|
}
|
|
}
|
|
|
|
public void StartGame()
|
|
{
|
|
SceneManager.LoadScene(mainScene);
|
|
}
|
|
|
|
public void ExitGame()
|
|
{
|
|
if (Application.platform == RuntimePlatform.WebGLPlayer)
|
|
{
|
|
return;
|
|
}
|
|
|
|
Application.Quit();
|
|
}
|
|
}
|
|
} |