GUI.Label

作者:追风剑情 发布于:2014-5-14 15:55 分类:Unity3d

一、新建一个脚本挂在主像机上

using UnityEngine;
using System.Collections;

public class GUILayoutLabelTest : MonoBehaviour {

    public Texture tex;

    void OnGUI()
    {
        GUI.Label(new Rect(10, 40, tex.width, tex.height), tex);//Label背景
        GUI.Label(new Rect(50, 60, tex.width, tex.height), "please enter account");//显示文本
    }
}

 

运行效果

GUILabel运行效果.png

 

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号