mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-03-24 10:44:23 -05:00
1. Added rough fx for erruption 2. Created a sign prefab for level use 3. fixed UI cooldown
13 lines
250 B
C#
13 lines
250 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public class ToControllMenu : MonoBehaviour
|
|
{
|
|
public void ToControlls()
|
|
{
|
|
SceneManager.LoadScene("Controlls");
|
|
}
|
|
}
|