19 lines
324 B
C#
19 lines
324 B
C#
![]() |
using UnityEngine;
|
|||
|
using System.Collections;
|
|||
|
|
|||
|
public class Reset : MonoBehaviour {
|
|||
|
|
|||
|
// Use this for initialization
|
|||
|
void Start () {
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
// Update is called once per frame
|
|||
|
void Update () {
|
|||
|
if(Input.GetKeyDown(KeyCode.R)){
|
|||
|
#pragma warning disable 0618
|
|||
|
Application.LoadLevel(Application.loadedLevel);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|