您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
34 行
871 B
34 行
871 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
using UnityEngine.XR.ARFoundation;
|
|
using UnityEngine.XR.Management;
|
|
|
|
namespace UnityEngine.XR.ARFoundation.Samples
|
|
{
|
|
public class BackButton : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
GameObject m_BackButton;
|
|
public GameObject backButton
|
|
{
|
|
get { return m_BackButton; }
|
|
set { m_BackButton = value; }
|
|
}
|
|
|
|
void Start()
|
|
{
|
|
if (Application.CanStreamedLevelBeLoaded("Menu"))
|
|
{
|
|
m_BackButton.SetActive(true);
|
|
}
|
|
}
|
|
|
|
public void BackButtonPressed()
|
|
{
|
|
SceneManager.LoadScene("Menu", LoadSceneMode.Single);
|
|
LoaderUtility.Deinitialize();
|
|
}
|
|
}
|
|
}
|