using UnityEngine;
using System.Collections;
public class Begin : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
void OnGUI(){
if(GUI.Button(new Rect(Screen.width/2-70,Screen.height/2-40,140,80),"开始游戏")){
Application.LoadLevel("main");
}
}
}
第一人称<Begin>
最新推荐文章于 2024-04-15 20:56:45 发布