- 最后登录
- 2017-5-15
- 注册时间
- 2012-3-1
- 阅读权限
- 90
- 积分
- 32973
- 纳金币
- 32806
- 精华
- 12
|
因为str1的字数可以输入不限,超过长度就会自动断行,而str2就会盖住str1第2行的文字
可以判断str1目前的高度,在将str1的高度设定到str2的起点高度
因为要每一段文字可以有自己的颜色
str1 = GUI.TextArea(new Rect(0,0,100,20), str1);
str2 = GUI.TextArea(new Rect(0,20,100,20), str2);
str3 = GUI.TextArea(new Rect(0,40,100,20), str3);
或是有什么其他方式可以用?
或是一个TextArea 可以设定每一段文字不同颜色吗?
|
|