i need to convert to c form java
I keep getting errors
#pragma strict
function Start () {
}
function Update(){
if (transform.position.y <-5){
GameOver();
}
}
function GameOver()
{
Application.LoadLevel("Menu");
}
↧