holopy3/Assets/Ancient Modular Tombs/Scripts/Level_loading.cs

16 lines
197 B
C#
Raw Normal View History

2020-12-10 14:25:12 +00:00
using UnityEngine;
using System.Collections;
public class Level_loading : MonoBehaviour {
void Start () {
}
void OnTriggerEnter(Collider other){
Application.LoadLevel ("Tomb");
}
}