Unity入门一,什么是GameObject,MonoBehaviour

Unity入门一,什么是GameObject,MonoBehaviour

GameObject和Component

Unity是一个Component-Based的引擎,全部物体都是GameObjectc#

GameObject是游戏场景中真实存在的,并且有位置的一个物件app

Component附属于GameObject,控制GameObject的各类属性ide

GameObject是由Component组合成的,Component的生命周期和GameObject息息相关。调用此GameObject的Destroy方法,它的子对象和对应的全部Component都会被销毁,但也能够一次只销毁一个Component函数

常见的Component:工具

Component 做用
RigidBody 刚体 使物体能在物理控制下运动
Collider 碰撞器 和RigidBody刚体一块儿使碰撞发生,没有Collider,两个碰撞的刚体会相互穿透
Renderer 渲染器 使物体显示在屏幕上
AudioSource 音频源 使物体在scence场景播放音频
Animation 动画
Animator 动画控制器

同时全部脚本都是组件,所以都能附到游戏对象上性能

经常使用的组件能够经过简单的成员变量获取动画

附在游戏对象上的组件或脚本能够经过GetComponent获取this

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
    void Awake() {
        transform.Translate(0, 1, 0);
        GetComponent<Transform>().Translate(0, 1, 0);
    }
}

Input和InputManager

在InputManager能够建立虚拟轴和按钮,并终端用户能够在屏幕配置对话框配置键盘输入。spa

若是想添加新的虚拟轴,选择菜单Edit->Project Settings->Input menu。这里能够改变每一个轴的设置。便可进入Input Manager的配置界面。code

在脚本中,全部虚拟轴经过它们的名字(name)来访问

每一个项目建立后,都有下面的默认输入轴

  • Horizontal and Vertical are mapped to w, a, s, d and the arrow keys.
    水平和垂直被映射到w, a, s, d键和方向键
  • Fire1, Fire2, Fire3 are mapped to Control, Option (Alt), and Command, respectively.
    Fire1, Fire2, Fire3被分别映射到Ctrl,Option(Alt)和Command键
  • Mouse X and Mouse Y are mapped to the delta of mouse movement.
    Mouse X 和 Mouse Y被映射到鼠标移动增量
  • Window Shake X and Window Shake Y is mapped to the movement of the window.
    Window Shake X 和 Window Shake Y 被映射到窗口的移动

Time

Time类是Unity中的一个全局变量,它记载了和游戏相关的时间,帧数等数据

Time类包含一个很是重要的变量叫deltaTime.这个变量包含从上次调用Update 或FixedUpdate到如今的时间(根据你是放在Update函数仍是FixedUpdate函数中)(Update每帧调用一次)

例:使物体在一个匀速的速度下旋转,不依赖帧的速率

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
    void Update() {
        transform.Rotate(0, 5 * Time.deltaTime, 0);
    }
}

Physics和Transform

Physics类是一个工具函数类,它主要提供了Linecast和Raycast两种射线投射方式。

  • Linecast是以投射的起始位置和终止位置为参数
  • Raycast则是以投射的起始位置和投射方向为参数

来判断这个投射有没有和某个Collider发生了碰撞。

using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Update() {
    // 使用Raycast
        Vector3 fwd = transform.TransformDirection(Vector3.forward);
        if (Physics.Raycast(transform.position, fwd, 10))
            print("There is something in front of the object!");
        // 使用Linecast
    Transform target;
    if (!Physics.Linecast(transform.position, target.position))
        ProcessData.AndDoSomeCalculations();
    }
}

在Physics这个模块包含三个最重要的Component:RigidBody,Collision,Joint

  • RgidBody做为一个受力物体存在,因此能够向一个RigidBody施加Force(力),Drag(阻力)。同时RigidBody还有 velocity (速度),mass(质量),position(位置),旋转(rotation)等属性
  • Collider是为了处理物理中的碰撞事件而出现的类,若是没有Collider,两个RigidBody之间没法发生碰撞。同一个GameObject能够绑定多个Collider构建更加复杂的碰撞体结构。Collider也能够设置material,即Collider的物理材质。 用于调整摩擦力和碰撞单位之间的反弹效果。(当发生碰撞时,会触发销毁函数OnCollisionEnter,OnCollisionStay,OnCollisionExit等等
  • Joint用于链接两个RigidBody,当Joint断掉的时候会触发OnJointBreak的回调函数。

MonoBehaviour

GameObject是游戏场景中真实存在的,并且有位置的一个物件

而控制GameObject则须要脚本组件

MonoBehaviour 是 Unity 中全部脚本的基类

MonoBehaviour is the base class from which every Unity script derives.

MonoBehaviour生命周期

1552572209264

在游戏里常常出现须要检测敌人和我方距离的问题,这时若是要寻找全部的敌人,显然要消耗的运算量太大了,因此最好的办法是将攻击范围使用Collider表示,而后将Collider的isTrigger设置为True。最后使用OnTriggerEnter来作攻击范围内的距离检测,这样会极大提高程序性能。

脚本的基本结构

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using MyGame;  //3引用命名空间
public class player : MonoBehaviour {
       // Use this for initialization
       void Start () {
        GameData data;  //4才可使用
       }
       // Update is called once per frame
       void Update () {
       }
}
namespace MyGame { //1定义命名空间
    class GameData { //2属于MyGame下的类
    }
}

总结

Time,Input,Physics都是Unity中的全局变量

GameObject是游戏中的基本物件,是由Component组合而成的,GameObject自己必须有Transform的Component

GameObject是游戏场景中真实存在,并且有位置的一个物件

相关文章
相关标签/搜索