unity GUI如何设置字体颜色

unity4.3想改变字体颜色就加了一句style.font.material.color=Color.red;然后画面上就不显示文字了。怎么回事?voidOnGUI()... unity4.3 想改变字体颜色就加了一句style.font.material.color = Color.red;然后画面上就不显示文字了。怎么回事?
void OnGUI () {
GUIStyle style = new GUIStyle();
style.fontSize = 100;
style.alignment = TextAnchor.UpperCenter;
style.font.material.color = Color.red;
GUI.Label(normalRect(Screen.width / 2, Screen.height, 50, 50), "test", style);
}
语言是C#
没有style.font.material.color = Color.red;可以正常显示。
展开
 我来答
百度网友23bba7f0
2015-09-16 · TA获得超过4173个赞
知道小有建树答主
回答量:660
采纳率:85%
帮助的人:186万
展开全部
使用ClewText.material.color即可实现。
1.例如设置成红色:
ClewText.material.color = Color.red;
2.改字体颜色页可以使用是style.normal.textcolor=new color(1,0,0),括号里可以改不同数字,对应不同颜色。
一郎大神
2014-07-27 · TA获得超过1180个赞
知道小有建树答主
回答量:1033
采纳率:92%
帮助的人:322万
展开全部
void OnGUI () {

GUI.skin.label.normal.textColor = Color( 0, 255.0/255, 0, 1.0 );
// 后面的color为 RGBA的格式,支持alpha,取值范围为浮点数: 0 - 1.0.
GUI.skin.label.fontSize=100;
GUI.skin.label.alignment = TextAnchor.UpperCenter;
GUI.Label(normalRect(Screen.width / 2, Screen.height, 50, 50), "test");
}
追问
可以了,我那样做有什么问题吗/
追答
没什么问题,如果你要复用的话用你那种方式更好
但是如果只用一次的话就没必要创建GUI的样式
另外最好还是去用NGUI吧 GUI在移动终端上的效率真心不敢恭维
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式