查看: 1103|回复: 0
打印 上一主题 下一主题

[脚本章节]Overview: Accessing Other Game Objects 访问其他游戏物体

[复制链接]

3795

主题

2

听众

5万

积分

版主

Rank: 7Rank: 7Rank: 7

纳金币
53202
精华
32

活跃会员 优秀版主 推广达人 突出贡献 荣誉管理 论坛元老

跳转到指定楼层
楼主
发表于 2012-10-11 10:20:45 |只看该作者 |倒序浏览
Most advanced game code does not only manipulate a single object. The Unity scripting interface has various ways to find and access other game objects and components there-in. In the following we assume there is a script named OtherScript.js attached to game objects in the scene.
多数高级的游戏代码并不仅仅控制单独的游戏对象. Unity脚本有很多方法去查找和访问他们的游戏对象和组件.下面我们假设一个脚本OtherScript.js附于场景中的一个游戏对象上.


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    void Update() {        otherScript = GetComponent<OtherScript>();        otherScript.DoSomething();    }}


function Update () {    otherScript = GetComponent(OtherScript);    otherScript.DoSomething();}


1. Through inspector assignable references.

通过检视面板指定参数.
You can assign variables to any object type through the inspector:
你能通过检视面板为一些对象类型设置变量值:


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    public Transform target;    void Update() {        target.Translate(0, 1, 0);    }}


// Translate the object dragged on the target slot// 将要转换的对象拖拽到target位置var target : Transform;function Update () {    target.Translate(0, 1, 0);}


You can also expose references to other objects to the inspector. Below you can drag a game object that contains the OtherScript on the target slot in the inspector.
你也可以把参数显示在检视面板.随后你可以拖拽游戏对象OtherScript到检视面板中的target位置.


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    public OtherScript target;    void Update() {        target.foo = 2;        target.DoSomething("Hello");    }}


// Set foo DoSomething on the target variable assigned in the inspector.// 设置foo DoSomething到target变量指定在检视面板.var target : OtherScript;function Update () {    // Set foo variable of the target object    // 设置target 对象的foo变量     target.foo = 2;    // Call do something on the target    // 调用target的Dosomething     target.DoSomething("Hello");}


2. Located through the object hierarchy.

确定对象的层次关系
You can find child and parent objects to an existing object through the Transform component of a game object:
你能通过游戏对象的 Transform 组件去找到它的子对象或父对象:


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    public void Awake() {        transform.Find("Hand").Translate(0, 1, 0);    }}


// Find the child "Hand" of the game object//获得子游戏对象"Hand" // we attached the script to// 我们现在的脚本为transform.Find("Hand").Translate(0, 1, 0);


Once you have found the transform in the hierarchy, you can use GetComponent to get to other scripts.
一旦你在层次视图找到transform,你便能用 GetComponent 获取其他脚本.


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    public void Awake() {        transform.Find("Hand").GetComponent<OtherScript>().foo = 2;        transform.Find("Hand").GetComponent<OtherScript>().DoSomething("Hello");        transform.Find("Hand").rigidbody.AddForce(0, 10, 0);    }}


// Find the child named "Hand".// On the OtherScript attached to it, set foo to 2.// 找到子对象 "Hand".// 获取OtherScript,设置foo为2.transform.Find("Hand").GetComponent(OtherScript).foo = 2;// Find the child named "Hand".// Call DoSomething on the OtherScript attached to it.// 获得子对象"Hand".// 调用附属于它的 OtherScript的DoSomething.transform.Find("Hand").GetComponent(OtherScript).DoSomething("Hello");// Find the child named "Hand".// Then apply a force to the rigidbody attached to the hand.//获得子对象"Hand".// 加一个力到刚体上transform.Find("Hand").rigidbody.AddForce(0, 10, 0);


You can loop over all children: 你能循环到所有的子对象:


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    public void Awake() {            foreach (Transform child in transform) {            child.Translate(0, 10, 0);        }    }}


// Moves all transform children 10 units upwards!//向上移动所有的子对象1个单位!for (var child : Transform in transform) {    child.Translate(0, 10, 0);}


See the documentation for the Transform class for further information.
查看文档 Transform 类可以获得更多信息.
3. Located by name or Tag. 指定名字或标签.
You can search for game objects with certain tags using GameObject.FindWithTag and GameObject.FindGameObjectsWithTag . Use GameObject.Find to find a game object by name.
你能用确定的标签搜索对象,使用 GameObject.FindWithTag 和 GameObject.FindGameObjectsWithTag .使用 GameObject.Find 通过名字获得游戏对象.


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    void Start() {        GameObject go = GameObject.Find("SomeGuy");        go.transform.Translate(0, 1, 0);        GameObject player = GameObject.FindWithTag("layer");        player.transform.Translate(0, 1, 0);    }}


function Start () {    // By name 通过名字    var go = GameObject.Find("SomeGuy");    go.transform.Translate(0, 1, 0);    // By tag 通过标签    var player = GameObject.FindWithTag("layer");    player.transform.Translate(0, 1, 0);}


You can use GetComponent on the result to get to any script or component on the found game object
你可以用GetComponent获得指定游戏对象上的任意脚本或组件.


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    void Start() {        GameObject go = GameObject.Find("SomeGuy");        go.GetComponent<OtherScript>().DoSomething();        GameObject player = GameObject.FindWithTag("layer");        player.GetComponent<OtherScript>().DoSomething();    }}


function Start () {    // By name 通过名字    var go = GameObject.Find("SomeGuy");    go.GetComponent(OtherScript).DoSomething();    // By tag 通过标签    var player = GameObject.FindWithTag("layer");    player.GetComponent(OtherScript).DoSomething();}


Some special objects like the main camera have shorts cuts using Camera.main .
一些特殊对象,比如主摄像机,用快捷方式 Camera.main .
4. Passed as parameters. 传递参数
Some event messages contain detailed information on the event. For instance, trigger events pass the Collider component of the colliding object to the handler function.
一些事件包含详细的消息信息.例如,触发事件传递碰撞对象的 Collider 组件到处理函数.
OnTriggerStay gives us a reference to a collider. From the collider we can get to its attached rigidbody.
OnTriggerStay给我们一个碰撞体参数.通过这个碰撞体我们能得到它的刚体.


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    void OnTriggerStay(Collider other) {        if (other.rigidbody)            other.rigidbody.AddForce(0, 2, 0);    }}


function OnTriggerStay( other : Collider ) {    // If the other collider also has a rigidbody    // apply a force to it!    // 如果碰撞体有一个刚体    // 给他一个力!    if (other.rigidbody)    other.rigidbody.AddForce(0, 2, 0);}


Or we can get to any component attached to the same game object as the collider.
或者我们可以通过collider得到这个物体的任何组件.


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {void OnTriggerStay(Collider other) {    if (other.GetComponent<OtherScript>())        other.GetComponent<OtherScript>().DoSomething();    }}


function OnTriggerStay( other : Collider ) {    // If the other collider has a OtherScript attached    // call DoSomething on it.    // Most of the time colliders won't have this script attached,    // so we need to check first to avoid null reference exceptions.    // 如果其他的碰撞体附加了OtherScript     // 调用他的DoSomething.    // 一般碰撞体没有附脚本,    // 所以我们需要首先检查是否为null.    if (other.GetComponent(OtherScript))    other.GetComponent(OtherScript).DoSomething();}


Note that by suffixing the other variable in the above example, you can access any component inside the colliding object.
注意, 在上面的例子中使用后缀的方式访问其他变量.同样,你能访问到碰撞对象包含的任意组件。
5. All scripts of one Type 某个类型的脚本
Find any object of one class or script name using Object.FindObjectsOfType or find the first object of one type using Object.FindObjectOfType .
找到某个类型的对象或脚本可以用 Object.FindObjectsOfType 或获得某个类型的第一个对象使用 Object.FindObjectOfType .


    C#
    JavaScript


using UnityEngine;using System.Collections;public class example : MonoBehaviour {    void Start() {        OtherScript other = FindObjectOfType(typeof(OtherScript));        other.DoSomething();    }}


function Start () {    // Find the OtherScript which is attached to any game object in the scene.    // 获得附加在场景里的游戏对象的OtherScript    var other : OtherScript = FindObjectOfType(OtherScript);    other.DoSomething();}


来源:unity3d圣典 更多分享尽在web3D纳金网http://www.narkii.com/



Subsections 章节

     [脚本章节]Scripting Overview 脚本概述
    [脚本章节]Overview: Script compilation 脚本编译(高级)
    [脚本章节]Overview: Performance Optimization 性能优化
    [脚本章节]Overview: The most important classes 重要的类
    [脚本章节]Overview : Writing Scripts in C# 使用C#书写脚本
    [脚本章节]Overview: Coroutines & Yield 协同程序 & 中断
    [脚本章节]Overview: Instantiate 实例
    [脚本章节]Overview: Member Variables & Global Variables 成员变量 & 全局变量
    [脚本章节]Overview: Vectors 向量
    [脚本章节]Overview: Accessing Other Game Objects 访问其他游戏物体
    [脚本章节]Overview: Accessing Other Components 访问其他组件
    [脚本章节]Overview: Keeping Track of Time 记录时间
    [脚本章节]Overview: Common Operations 常用操作

分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

关闭

站长推荐上一条 /1 下一条

手机版|纳金网 ( 闽ICP备08008928号

GMT+8, 2024-4-30 21:57 , Processed in 0.085610 second(s), 29 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部