Skip to content
Snippets Groups Projects
Commit a10c0937 authored by Noxer's avatar Noxer
Browse files

Fixed deprecation warnings

parent db95213a
No related branches found
No related tags found
No related merge requests found
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class GoToReplayButton : MonoBehaviour {
public void GoToReplayScene()
{
Application.LoadLevel ("Replay");
SceneManager.LoadScene ("Replay");
}
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class GoToRecordingButton : MonoBehaviour {
public void GoToRecordingScene()
{
Application.LoadLevel ("Record");
SceneManager.LoadScene ("Record");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment