using UnityEngine;
using System.Collections;
public class demo : MonoBehaviour {
public Texture image;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
void OnGUI(){
GUI.Label(new Rect(100,100,100,100),"beijing");
GUI.Label(new Rect(200, 100, 100, 100), image);
}
}
简单u3d脚本lable
最新推荐文章于 2024-04-26 08:30:00 发布