max89max e8e7f8a23a PlayerControl
Hiérarchie
Standard Assets
2015-11-07 20:56:53 +01:00

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);
}
}
}