Final commit
This commit is contained in:
13
Assets/SampleScenes/Scripts/LevelReset.cs
Normal file
13
Assets/SampleScenes/Scripts/LevelReset.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
using UnityEngine.EventSystems;
|
||||
using UnityEngine.SceneManagement;
|
||||
|
||||
public class LevelReset :MonoBehaviour , IPointerClickHandler
|
||||
{
|
||||
public void OnPointerClick(PointerEventData data)
|
||||
{
|
||||
// reload the scene
|
||||
SceneManager.LoadScene(SceneManager.GetSceneAt(0).name);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user