mirror of
https://github.com/ConjureETS/Human-Farm-Tycoon.git
synced 2026-03-24 10:21:06 +00:00
18 lines
436 B
C#
18 lines
436 B
C#
using System;
|
|
using UnityEngine;
|
|
using UnityStandardAssets.CrossPlatformInput;
|
|
|
|
[RequireComponent(typeof (GUITexture))]
|
|
public class ForcedReset : MonoBehaviour
|
|
{
|
|
private void Update()
|
|
{
|
|
// if we have forced a reset ...
|
|
if (CrossPlatformInputManager.GetButtonDown("ResetObject"))
|
|
{
|
|
//... reload the scene
|
|
Application.LoadLevelAsync(Application.loadedLevelName);
|
|
}
|
|
}
|
|
}
|