10 lines
261 B
C#
10 lines
261 B
C#
|
using UnityEngine;
|
|||
|
using UnityEngine.SceneManagement;
|
|||
|
|
|||
|
// Only used in the VR Entry Point scene, for loading in the main scene.
|
|||
|
public class VRSceneOpener : MonoBehaviour {
|
|||
|
private void Start() {
|
|||
|
SceneManager.LoadScene("Scenes/VRScene");
|
|||
|
}
|
|||
|
}
|