美文网首页
无标题文章

无标题文章

作者: 22ffe4b948bd | 来源:发表于2017-06-27 11:15 被阅读0次

//按钮贴图

varbuttonTexture : Texture2D;

//提示信息

varstr : String;

//时间计数器

varframeTime :int;

functionStart()

{

//初始化赋值

str ="点击计数按钮,开始计数";

}

functionOnGUI()

{

//显示提示信息内容

GUI.Label(Rect(200, 30, Screen.width, 30), str);

if(GUI.Button(Rect(150,80,buttonTexture.width,buttonTexture.height),buttonTexture)){

//点击按钮修改提示信息

str ="哟,你点击了图片按钮";

}

//设置按钮中文字的颜色

GUI.color = Color.red;

//设置按钮的背景色

GUI.backgroundColor = Color.green;

if(GUI.Button(Rect(180,230,60,30),"普通按钮")){

//点击按钮修改提示信息

str ="你点击了普通按钮";

}

//设置按钮中文字的颜色

GUI.color = Color.yellow;

//设置按钮的背景色

GUI.backgroundColor = Color.red;

if(GUI.RepeatButton(Rect(300,120,100,60),"计数按钮")){

//点击按钮修改提示信息

str ="按钮按下时间:"+ frameTime;

//时间计数器++

frameTime++;

}

}

相关文章

  • 无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章 无标题文章无标题文章无标题文章无...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • fasfsdfdf

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章

  • 无标题文章

    无标题文章 无标题文章 无标题文章无标题文章 无标题文章 无标题文章

网友评论

      本文标题:无标题文章

      本文链接:https://www.haomeiwen.com/subject/iyascxtx.html