赞
踩
用GUIStyle来设置字体
- <pre name="code" class="csharp"><pre name="code" class="csharp">void OnGUI()
- {
- GUIStyle fontStyle = new GUIStyle();
- fontStyle.normal.background = null; //设置背景填充
- fontStyle.normal.textColor= new Color(1,0,0); //设置字体颜色
- fontStyle.fontSize = 40; //字体大小
- GUI.Label(new Rect(0, 0, 200, 200), "Hello Font", fontStyle);
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。