2013年9月16日 星期一

Unity3D研究院之脚本实现模型的平移与旋转(六)

http://www.xuanyusong.com/archives/501

这一章MOMO带大家讨论一下Unity3D中使用的脚本,脚本的最大特点就是用少量的代码实现繁多的功能,避免大量的代码。Untiy3D这一块可以使用脚本做很多东西,那么我们开始学习脚本吧。
有关Unity3D 脚本的API所有文档盆友们都可以去这里查阅。
脚本描述
Scripting inside Unity consists of attaching custom script objects called behaviours to game objects. Different functions inside the script objects are called on certain events. The most used ones being the following:
Update:
This function is called before rendering a frame. This is where most game behaviour code goes, except physics code.
FixedUpdate:
This function is called once every physics time step. This is the place to do physics-based game behaviour.
Code outside any function:
Code outside functions is run when the object is loaded. This can be used to initialise the state of the script.
Note: Sections of this document assume you are using Javascript, but see Writing scripts in C# & Boo for information about how to use C# or Boo scripts.

大概意思是介绍三个重要的脚本函数

Update:这个函数在渲染帧之前被调用,大部分的游戏行为代码都在这里执行,除 物理代码。
FixedUpdate:这个函数在每进行一次物理时间步调时被调用,它是基于物理的游戏行为。
Code outside any function:这类函数在对象加载时被调用,它可以用来脚本的初始化工作。
本章我们着重讨论Update 这个函数,创建脚本与绑定脚本的方法在第二章中已经介绍过了不会的盆友请去那里阅读。虽然官方推荐脚本使用JavaScript编辑,但是其实C#更符合Unity 3D的编程思想,推荐新人先使用JavaScript,然后在学习C#,因为JavaScript更容易上手一些。



在三维世界中创建两个矩形,然后在添加两个脚本分别绑定在这两个箱子上,脚本的名称暂时命名为 js0 、js1。
在Project 页面中打开刚刚创建的js0,发现Unity3D 已经将Update 函数添加在脚本中了。
模型的移动
Translate方法中的三个参数分别标示,模型在三维世界中X 、Y、Z 轴移动的单位距离。



01function Update () {
02
03   //以模型X轴旋转,单位为2.
04   transform.Rotate(2, 0, 0);
05
06   //以模型Y轴旋转,单位为2.
07   transform.Rotate(0, 2, 0);
08
09   //以模型Z轴旋转,单位为2.
10   transform.Rotate(0, 0, 2);
11}

模型的旋转可以选择一个参照物,下面代码第二个参数设置模型移动参照物,这里设置成3D世界。那么模型将以相对与整个3D世界进行旋转。

01function Update () {
02
03   //设置旋转的范围
04    var rotate : float = Time.deltaTime * 100;
05
06    //旋转的方向
07
08    //相对于世界坐标中心向右旋转物体
09    transform.Rotate(Vector3.right * rotate, Space.World);
10
11     //相对于世界坐标中心向上旋转物体
12    transform.Rotate(Vector3.up * rotate, Space.World);
13
14     //相对于世界坐标中心向左旋转物体
15    transform.Rotate(Vector3.left * rotate, Space.World);
16}
如下图所示,给出一个小例子,在脚本中移动箱子的坐标,在屏幕中记录模型移动的位置,并且显示在游戏视图中。效果很不错吧,嘻嘻~~


//X轴移动位置
var posX : float;
//Y轴移动位置
var posY : float;
//Z轴移动位置
var posZ : float;

function Update () {


  //设置移动的范围

    var x : float = Time.deltaTime * 10;
    var y : float = Time.deltaTime * 8;
    var z : float = Time.deltaTime * 5;

    //移动的方向X轴

    transform.Translate (x, 0, 0);

    //移动的方向Y轴

    transform.Translate (0, y, 0);
    //移动的方向Z轴
    transform.Translate (0, 0, z);

    //赋值计算模型在三维坐标系中的位置

     posX += x; 
     posY += y; 
     posZ += z; 
}

function OnGUI () {  


  //将坐标信息显示在3D屏幕中

  GUI.Label(Rect(50, 100,200,20),"x pos is" + posX +"float");  
  GUI.Label(Rect(50, 120,200,20),"y pos is" + posY +"float");  
  GUI.Label(Rect(50, 140,200,20),"z pos is" + posZ +"float");  

}



Unity3D 的世界中脚本还可以做很多事情,以后我在慢慢向各位道来~ 欢迎各位盆友可以和MOMO一起讨论Unity3D游戏开发,哇咔咔~~~