0
When I put this following script on unity
and right after the association with a transparent form (without physics) and I click on play to test, gives an error saying that can not play (look at the print), can anyone help me? there’s something wrong with the script?
It’s written down here....
(sorry my inexperience I tried to be as detailed as possible!
using UnityEngine;
using System.Collections;
public class Fall : MonoBehaviour {
void OnTriggerEnter(Collider other) {
Application.LoadLevel("level1");
}
}