GUI.Label

作者:追风剑情 发布于:2014-7-4 23:00 分类:GUI

  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class GUILabel : MonoBehaviour {
  5.  
  6. void OnGUI () {
  7. // 画一个黄色的标签
  8. GUI.color = Color.yellow;
  9. GUI.Label (new Rect(10, 10, 100, 20), "Hello World!");
  10.  
  11. // 再画一个红色的标签
  12. GUI.color = Color.red;
  13. GUI.Label (new Rect(10, 40, 100, 20), "Hello World!");
  14. }
  15. }
  1. 运行效果
  1. GUILabel.png

标签: Label

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号