赞
踩
- using UnityEngine;
- using System.Collections;
-
- public class Script_6_1_Slider : MonoBehaviour {
-
- //定义水平滑动条的值
- private float horizontalValue;
- //定义垂直滑动条的值
- private float verticalValue;
-
- //公有变量——贴图
- public Texture img;
-
- void Start ()
- {
- //初始化
- horizontalValue = 1.0f;
- verticalValue = 1;
-
- //贴图为空时,打印错误信息
- if(img == null)
- Debug.LogError("贴图不能为空!");
-
- }
-
- void OnGUI()
- {
- //水平滑动条
- horizontalValue = GUI.HorizontalSlider(new Rect(10,10,100,20),horizontalValue,0.0f,10.0f);
- //标签
- GUI.Label(new Rect(120,10,500,20),"水平滑动条的值:" + horizontalValue);
- //垂直滑动条
- verticalValue = GUI.VerticalSlider(new Rect(10,30,20,100),verticalValue,0,100);
- //贴图
- GUI.DrawTexture(new Rect(50,30,verticalValue,verticalValue),img);
-
- }
- }
- using UnityEngine;
- using System.Collections;
-
- public class Script_6_2_ScrollView : MonoBehaviour {
-
- //滚动条的位置
- private Vector2 scrollPosition;
- //信息
- private string[] infos = new string [5];
-
- void Start ()
- {
- //初始化
- infos[0] = "高端大气上档次,低调奢华有内涵,奔放洋气有深度,简约时尚国际范,低端粗俗甩节操,土憋矫情无下限,装模作样绿茶婊,外猛内柔女汉子,卖萌嘟嘴剪刀手,忧郁深沉无所谓,狂拽帅气吊炸天,冷艳高贵接地气,时尚亮丽小清新,可爱乡村非主流,贵族王朝杀马特,提莫团战必须死";
- infos[1] = "1.桌子上原来有12支点燃的蜡烛,先被风吹灭了3根,不久又一阵风吹灭了2根,最后桌子上还剩几根蜡烛呢?\n答:5根";
- infos[2] = "2.一栋住宅楼,爷爷从一楼走到三楼要6分钟,现在要到6楼,要走多少分钟?\n答:15分钟";
- infos[3] = "3.有一本书,兄弟两个都想买。哥哥缺5元,弟弟只缺一分。但是两人合买一本,钱仍然不够。你知道这本书的价格吗?他们又各有多少钱呢?\n答:这本书的价格是5元。哥哥一分也没有,弟弟有4.99元";
- infos[4] = "4.1根绳子对折,再对折,再第三次对折,然后从中间剪断,共剪成多少段?\n答:9段";
- }
-
- void OnGUI()
- {
- //开始滚动视图
- scrollPosition = GUI.BeginScrollView(new Rect(10,10,400,400),scrollPosition,new Rect(10,10,770,600));
- //标签内容
- GUI.Label(new Rect(10,10,770,40),infos[0]);
- GUI.Label(new Rect(10,50,770,40),infos[1]);
- GUI.Label(new Rect(10,90,770,40),infos[2]);
- GUI.Label(new Rect(10,130,770,60),infos[3]);
- GUI.Label(new Rect(10,190,770,40),infos[4]);
-
- //结束滚动视图
- GUI.EndScrollView();
- }
- }
将Script_6_2_ScrollView.cs绑定到Main Camera上。点击Play按钮。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。