纳金网
标题:
GUI展开动画效果
[打印本页]
作者:
奔跑的小兔
时间:
2012-2-14 14:02
标题:
GUI展开动画效果
只接来代码:
var show = false;
var grow = false;
var min = 0.0;
var max = 50.0;
var height = 0.0;
var speed = 0.0;
//var skin:GUISkin;
function OnGUI ()
{
//GUI.skin = skin;
if(GUI.Button(Rect(5,5,104,25),"List"))
{
grow = true;
if(!show)
show = true;
}
if(show)
{
GUILayout.BeginArea(Rect(7,30,100,height),"","Box");
GUILayout.BeginVertical();
for(i = 0;i<18;i++)
GUILayout.Button(i+".Title");
GUILayout.EndVertical();
GUILayout.EndArea();
}
if(grow)
{
speed += Time.deltaTime*5.0;
height = Mathf.Lerp(min,max,speed);
if(Mathf.Approximately(height,max))
{
grow = false;
max = min;
min = height;
speed = 0.0;
if(min == 0)
show = false;
}
}
}
转自:http://oulehui.blog.163.com/blog/static/79614698201011204129303/
欢迎光临 纳金网 (http://go.narkii.com/club/)
Powered by Discuz! X2.5