mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-27 21:13:53 +00:00
13 lines
242 B
C#
13 lines
242 B
C#
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class UISceneLoader : MonoBehaviour
|
|
{
|
|
void Start()
|
|
{
|
|
SceneManager.LoadScene(
|
|
"Raindrop/Bootstrap/MainScene",
|
|
LoadSceneMode.Single);
|
|
}
|
|
}
|