content/hifi-content/brosche/StudioOffice/Domain/Assets/SampleScenes/Scripts/LevelReset.cs
2022-02-13 21:50:01 +01:00

18 lines
384 B
C#

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);
}
private void Update()
{
}
}