GUI.Label

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

using UnityEngine;
using System.Collections;

public class GUILabel : MonoBehaviour {

	void OnGUI () {
		// 画一个黄色的标签
		GUI.color = Color.yellow;
		GUI.Label (new Rect(10, 10, 100, 20), "Hello World!");

		// 再画一个红色的标签
		GUI.color = Color.red;
		GUI.Label (new Rect(10, 40, 100, 20), "Hello World!");
	}
}
运行效果
GUILabel.png 

标签: Label

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号