GUI.Label

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

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

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class GUILayoutLabelTest : MonoBehaviour {
  5.  
  6. public Texture tex;
  7.  
  8. void OnGUI()
  9. {
  10. GUI.Label(new Rect(10, 40, tex.width, tex.height), tex);//Label背景
  11. GUI.Label(new Rect(50, 60, tex.width, tex.height), "please enter account");//显示文本
  12. }
  13. }

 

运行效果

GUILabel运行效果.png

 

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号