17 lines
321 B
C#
17 lines
321 B
C#
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.SceneManagement;
|
||
|
|
|
||
|
|
namespace ARLocation.Utils
|
||
|
|
{
|
||
|
|
public class SelectScene : MonoBehaviour
|
||
|
|
{
|
||
|
|
|
||
|
|
// Use this for initialization
|
||
|
|
|
||
|
|
public void LoadScene(string sceneName)
|
||
|
|
{
|
||
|
|
SceneManager.LoadScene(sceneName, LoadSceneMode.Single);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|