赞
踩
Transform组件是Unity3D的重点之一,主要由于控制物体的旋转、移动、缩放。
- /*
- 成员变量:
- position:在世界空间坐标transform的位置。
- localPosition:相对于父级的变换的位置。如果该变换没有父级,那么等同Transform.position
- eulerAngles:世界坐标系中的旋转(欧拉角)。
- localEulerAngles:相对于父级的变换旋转角度。
- right:世界坐标系中的右方向。(世界空间坐标变换的红色轴。也就是x轴。)
- up:世界坐标系中的上方向。(在世界空间坐标变换的绿色轴。也就是y轴。)
- forward:世界坐标系中的前方向。(在世界空间坐标变换的蓝色轴。也就是z轴。)
- rotation:世界坐标系中的旋转(四元数)。
- localRotation:相对于父级的变换旋转角度。
- localScale:相对于父级的缩放比例。
- parent:父对象Transform组件。
- worldToLocalMatrix:矩阵变换的点从世界坐标转为自身坐标(只读)。
- localToWorldMatrix:矩阵变换的点从自身坐标转为世界坐标(只读)。
- root:对象层级关系中的根对象的Transform组件。
- childCount:子对象数量。
- lossyScale:全局缩放比例(只读)。
- /*
- transform.position=new Vector3(0,0,3);//位置移动
- transform.rotation=Quaternion.Eular(0,45,0);//位置旋转 Y轴旋转45度
- transform.localScale=new Vector3(2,2,1); //缩放
- //成员方法
- transform.Translate(0,0,3);//位置移动 =(Vector3.forward*3); =(new Vector3(0,0,3))向前移动
- transform.Rotate(0,45,0);//围绕Y轴旋转45度
既有大小又有方向的量叫做向量。在空间中,向量用一段有方向的线段来表示。可用于描述具有大小和方向两个属性的物理量,例如物体运动的速度、加速度、摄像机观察方向、刚体受到的力等都是向量。
GameObject和gameObject的区别:
GameObject是游戏对象类的基类
gameObject是脚本挂载的对象
方法:
Find(、FindWithTagO、FindGameObjectsWithTagO等
1)通过名称来查找:
GameObject player = new GameObject("Player");GameObject go=Gameobject.FinPlayer”);
2)通过tag 标签获取单个游戏对象:
GameObject go=GameObject.FindWithTag(Player”);
GameObject go=GameObject.FindGameObjectWithTag '(Player”);
3)通过游戏标签获取多组游戏对象:
GameObject[]go=GameObject.FindGameObjectsWithTag Player");组件引用函数:
GetComponent
得到组件
GetComponents
得到组件列表(用于多个同类型组件的时候)
GetComponentInChildren得到对象或对象子物体上的组件
如:
ScriptName other=GameObject.GetComponent<ScriptName>():/在对象上添加脚本print(other.name);//可以通过对象引用脚本中的名字
Time.time:表示从游戏开始到现在的时间,会随着游戏的暂停而停止计算。
Time.deltaTime:表示从上一帧到当前帧的时间,以秒为单位。
Time.timeScale:时间缩放,默认值为1,若设置<1,表示时间减慢,若设置>1,表示时间加快,可以用来加速和减速游戏,非常有用。
- //案例1:用deltaTime控制对象移动
- public GameObject cube;
- float speed = 3f;
- void Update ()
- {
- cube.transform.Translate(Vector3.forward * Time.deltaTime * speed);
- }
五:克隆游戏对象
//在预设体的位置克隆游戏对象
GameObject go1=Instantiate(cube);
//在固定位置克隆游戏对象
//Quaternion.identity 游戏对象不旋转:Quaternion(0,0,0,0)
GameObject go2 =Instantiate(cube,new Vector3(0,0,5),Quaternion.identity);
六:销毁游戏对象
Destroy销毁场景中的物体但是内存还存在,或一段时间没有再次被使用,才会销毁并且释放内存,这样避免了频繁对内存的读写操作,系统回收器会定时清理内存中没有被引用的对象,很可能有些地方你依然引用了该对象在你自己都不知道的地方,或者你忽略的地方,直接销毁会导致引用地方出现空引用的引用错误。
- //比如说你要销毁某一物体下的10个子物体,假设是要销毁A物体下的a0--a9,10个子物体
-
-
- ///<summary>
- ///脚本挂在A物体上
- /// <summary>
- public class AGameOnject: MonoBehaviour
- {
-
- void Start ()
- {
- for (int i = 0; i < transform.childCount; i++)
- {
- Destroy (transform.GetChild (i).gameObject);
- }
- }
-
- }
-
Destroy(go1); //直接销毁对象go1
Destroy(go2,3); //停3秒后销毁对象go2
七:查找游戏对象
通过名称来查找游戏对象
GameObject cube1=GameObject.Find("Player");
GameObject cube2=GameObject.FindWithTag("Player");
-
-
- //获取游戏对象有三种方法:
-
- //1.通过对象名称获取:objCube=GameObject.Find("Cube");
-
- //例如:
-
- private var objCube:GameObject;
- private var isCubeRoate=false;
-
- function Start () {
- objCube=GameObject.Find("Cube");
- }
-
- function Update(){
- if(isCubeRoate){
- objCube.transform.Rotate(0.0f,Time.deltaTime*200,0.0f);
- }
- }
-
- function OnGUI(){
- if(GUILayout.Button("旋转",GUILayout.Height(50))){
- isCubeRoate=true;
- }
- }
-
-
-
- //2.通过tag标签获取单个游戏对象:objCube=GameObject.FindWithTag("Finish");
-
- //3.通过游戏标签获取多组游戏对象:objCube=GameObject.FindGameObjectsWithTag("Finish");
八:添加、获取组件
- //1、把Move这个脚本加到cube这个游戏对象上
-
- cube.AddComponent("Move");
-
- //2、给游戏物体添加刚体
-
- cube.AddComponent("Rigidbody");
-
- //3、给游戏物体添加球体碰撞器
-
- cube.AddComponent("BoxCollider");
-
-
-
- //1、获取脚本组件Move
-
- Move m=cube.GetComponent<Move>();
-
- //2、获取刚体组件
-
- Rigidbody r=cube.GetComponent<Rigidbody>();
九:Random
- float a=Random.value; //返回0.0(包括)到1.0(包括)之间的数。
- int b=Random.Range(0,100) ; //包括最小但不包括最大
-
- float c=Random.Range(0.0f,5.5f); //包括最大和最小
十:Input
GetMouseButton(0):按下鼠标左键不动,程序会一直运行,松开左键程序停止运行。
GetMouseButton(2):按下鼠标中键不动,程序会一直运行,松开中键程序停止运行。
GetMouseButton(1):按下鼠标右键不动,程序会一直运行,松开右键程序停止运行。
GetMouseButtonDown(0):按下鼠标左键时,程序运行一次
GetMouseButtonDown(1):按下鼠标右键时,程序运行一次
GetMouseButtonUp(2):按下鼠标中键时,程序不运行,松开中键时,程序运行一次。
if(Input.GetMouseButton(0)){
执行语句;
}
2.键盘事件
GetKey 当通过名称指定的按键被用户按住时返回true
GetKeyDown 当用户按下指定名称的按键时的那一帧返回true。
GetKeyUp 在用户释放给定名字的按键的那一帧返回true。
GetAxis("Horizontal")和GetAxis("Vertical") 水平轴和垂直轴
if(Input.GetKey("Down")){
执行语句;
}
- //案例:用方向键或WASD键来模拟物体移动
- float speed = 3f;
-
- void Update () {
- //float h = Time.deltaTime * speed;
- //按下WSAD键使游戏对象前后左右移动
- /*if (Input.GetKey(KeyCode.A))
- {
- transform.Translate(new Vector3(-h, 0, 0));
- }
- if (Input.GetKey(KeyCode.D))
- {
- transform.Translate(new Vector3(h, 0, 0));
- }
- if (Input.GetKey(KeyCode.W))
- {
- transform.Translate(new Vector3(0, 0, h));
- }
- if (Input.GetKey(KeyCode.S))
- {
- transform.Translate(new Vector3(0, 0, -h));
- }*/
- //Horizontal
- //Vertical
- float h= Input.GetAxis("Horizontal")*Time.deltaTime*speed;
- float v = Input.GetAxis("Vertical") * Time.deltaTime * speed;
- //transform.Translate(h, 0, v);
- transform.Translate(new Vector3(h, 0, v));
-
- }
3.自定义按钮
GetButton 根据按钮名称返回true当对应的虚拟按钮被按住时。
GetButtonDown 在给定名称的虚拟按钮被按下的那一帧返回true。
GetButtonUp 在用户释放指定名称的虚拟按钮时返回true。
- //案例:点击鼠标左键,给物体加一个力
- if (Input.GetButtonDown("Fire1"))
- {
- GameObject go = Instantiate(cube);
- Rigidbody r = go.GetComponent<Rigidbody>();//从预设体身上获取刚体组件
- r.AddForce(0,0,10000);//给预设体加力
- }
十一:协程
协同程序,即将主程程序运行时同时开启另一段逻辑处理来协同当前程序的执行。换句话说,开启协同程序就是开启一个线程。
使用StartCoroutine(string methodName)可以开启一个线程。
Yield语句是一种特殊类型的Return(返回)语句,它可以确保函数在下一次被执行时,不是从头开始,而是从Yield语句处开始。
协程其实就是一个IEnumerator(迭代器)。迭代器方法运行到 yield return 语句时,会返回一个表达式并保留当前在代码中的位置。 当下次调用迭代器函数时执行从该位置重新启动。
- //案例:每隔3秒克隆一个立方体
- public GameObject cube;
- void Start () {
- StartCoroutine("NewCube");
- }
- IEnumerator NewCube()
- {
- while (true)
- {
- Instantiate(cube);
- yield return new WaitForSeconds(3f);
- }
- }
部分练习:
- //2、点击鼠标左键克隆一个球体子弹,5秒后子弹销毁
- public GameObject obj;
- GameObject g1;
- void Update () {
-
- if (Input .GetButtonDown("Fire1"))
- {
- g1=Instantiate(obj)as GameObject;
- }
- Destroy(g1,5);
- }
- //2、用yield实现游戏物体每隔3秒按X轴正方向移动2米
- public GameObject cube;
-
- void Start () {
- StartCoroutine(BB());
- }
- IEnumerator BB()
- {
- while (true)
- {
- yield return new WaitForSeconds(3f);
- Instantiate(cube, Vector3.right * Time.time * 2, Quaternion.identity);
- }
- }
- //4、用Time类实现5秒倒计时(在页面显示)
- public float a = 5f;
- void Start () {
-
- }
- void Update () {
- if (a >= 0)
- {
- print((int)a);
- }
-
- a -= Time.deltaTime;
- }
- //5. 按下上下左右(WSAD)键,让游戏物体前后左右移动
- float h = Input.GetAxis("Horizontal");
- float v = Input.GetAxis("Vertical");
- transform.Translate(h, 0, v);
- //6、用Random类生成一个四位验证码(不重复)
- void Start () {
- int a = Random.Range(0, 9);
- int b = Random.Range(0, 9);
- int c = Random.Range(0, 9);
- int d = Random.Range(0, 9);
- if (a!=b&&a!=c&&a!=d&&b!=c&&b !=d&&c !=d)
- {
- print(a+""+b+""+c+""+d);
- }
- }
- //7、脚本Test访问脚本Test2里面的内容(通过名称查找游戏对象)
- public class Test : MonoBehaviour {
-
- public float time = 3f;
- }
- public class Test2 : MonoBehaviour {
-
- GameObject cube;
- void Start() {
- cube = GameObject.Find("Cube");
- Test t = GetComponent<Test>();
- print(t.time);
- }
- }
- //8、点击鼠标左键使物体向Z轴正方向移动3米,点击鼠标右键使物体绕Y轴旋转
- void Update () {
- if (Input .GetButtonDown("Fire1"))
- {
- transform.Translate(Vector3.forward*Time.time*3);
- }
- else if (Input .GetButtonDown("Fire2"))
- {
- transform.Rotate(new Vector3(0, 1, 0));
- }
- }
- //9、点击鼠标左键向XZ轴对角线方向发射小球
- void Update () {
- if (Input.GetButtonDown("Fire1"))
- {
- GameObject g = Instantiate(sq);
- Rigidbody r = g.AddComponent<Rigidbody>();
- r.AddForce(1000, 0, 10000);
- }
- }
- //10、3秒倒计时使球体放大2倍,然后再3秒倒计时使球体变成原样
- time -= Time.deltaTime;
- if (time <= 3)
- {
- transform.localScale = new Vector3(2, 2, 2);
- if (time <= 0)
- {
- transform.localScale = new Vector3(1, 1, 1);
- }
- }
- //11、打砖墙:动态生成10行10列的墙体,点击鼠标左键向墙体发射一个球体,3秒后球体消失
- public GameObject cube;
- public GameObject sq;
- // Use this for initialization
- void Start () {
- for (int i = 0; i < 10; i++)
- {
- for (int j = 0; j < 10; j++)
- {
- Instantiate(cube, new Vector3(i, j, 0), Quaternion.identity);
- }
- }
- }
-
- // Update is called once per frame
- void Update () {
- if (Input.GetButtonDown("Fire1"))
- {
- GameObject g = Instantiate(sq);
- Rigidbody r = g.AddComponent<Rigidbody>();
- r.AddForce(0,0,10000);
- Destroy(sq, 3);
-
- }
- }
-
- //12、点击鼠标左键克隆一个子弹,然后让子弹一直向前飞
- if (Input.GetButtonDown("Fire1"))
- {
- GameObject g = Instantiate(sq);
- Rigidbody r = g.AddComponent<Rigidbody>();
- r.AddForce(0, 0, 100000);
- }
- //13.游戏开始3秒后,在游戏场景中不同位置(x:0--10 z:2--8)随机同时克隆3个游戏物体
- void Start()
- {
- StartCoroutine(AA());
- }
- IEnumerator AA()//15.
- {
-
- while (true)
- {
-
- yield return new WaitForSeconds(3f);
- for (int i = 0; i < 3; i++)
- {
- int x = Random.Range(0, 10);
- int z = Random.Range(2, 8);
- Instantiate(cube, new Vector3(x, 0, z), Quaternion.identity);
- }
-
-
- }
- }
-
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。