Add Unity3D projects
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.SceneManagement;
|
||||
|
||||
// script to enable starting the race from the main menu
|
||||
public class StartRace : MonoBehaviour
|
||||
{
|
||||
public void StartRaceScene() {
|
||||
SceneManager.LoadScene(1);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user