|
unity3d scrollview控件
测试文字内容不能完全显示,why?
还有怎么调整,测试文字显示区域大小?
代码如下:
#pragma strict
//滚动条位置
var scrollposition:Vector2;
function Start () {
//初始化滚动条位置
scrollposition[0]=0;
scrollposition[1]=0;
}
function OnGUI () {
//开始滚动视图
scrollposition=GUI.BeginScrollView(Rect(0,0,200,200),scrollposition,Rect(0,0,Screen.width,300),true,true);
GUI.Label(Rect(100,40,Screen.width,50),"测试滚动视图,测试滚动视图,测试滚动视图,测试滚动视图,测试滚动视图,测试滚动视图,测试滚动视图!");
//结束滚动视图
GUI.EndScrollView();
}
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
×
|