mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-03-23 18:24:16 -05:00
1. Added rough fx for erruption 2. Created a sign prefab for level use 3. fixed UI cooldown
17 lines
348 B
C#
17 lines
348 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class SwitchMenuControls : MonoBehaviour
|
|
{
|
|
public GameObject currentMenu;
|
|
public GameObject nextMenu;
|
|
// Update is called once per frame
|
|
public void enable()
|
|
{
|
|
nextMenu.SetActive(true);
|
|
currentMenu.SetActive(false);
|
|
|
|
}
|
|
}
|