1
This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
unity-vr-portoflio/Assets/04 - Scripts/MainSceneController.cs
2025-03-15 20:02:21 +01:00

22 lines
532 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MainSceneController : SceneController {
public void onStartVehicleConfigurator()
{
UnityEngine.SceneManagement.SceneManager.LoadScene("02 - configurator");
}
public void onStartRoomDesigner()
{
this.GetComponent<SceneManager>().requestSceneChange("03 - room-designer");
}
public void onStartDemoScene()
{
this.GetComponent<SceneManager>().requestSceneChange("04 - demo");
}
}