holopy3/Assets/Ancient Modular Tombs/Scripts/Level_loading.cs
2020-12-10 15:25:12 +01:00

15 lines
197 B
C#

using UnityEngine;
using System.Collections;
public class Level_loading : MonoBehaviour {
void Start () {
}
void OnTriggerEnter(Collider other){
Application.LoadLevel ("Tomb");
}
}