搜尋
首頁資料庫mysql教程Overview: Accessing Other Game Objects 访问其他游戏物体

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.

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

<code>function Update () {
    otherScript = GetComponent(OtherScript);
    otherScript.DoSomething();
}</code>

1. Through inspector assignable references. 
通过检视面板指定参数.

You can assign variables to any object type through the inspector:

你能通过检视面板为一些对象类型设置变量值:

  • C#
  • JavaScript

<code><span>// Translate the object dragged on the target slot
// 将要转换的对象拖拽到target位置</span>

var target : Transform;
function Update () {
    target.Translate(0, 1, 0);
}</code>

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

<code>using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
    public OtherScript target;
    void Update() {
        target.foo = 2;
        target.DoSomething("Hello");
    }
}</code>

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

<code><span>// Find the child "Hand" of the game object
//获得子游戏对象"Hand" 
// we attached the script to
// 我们现在的脚本为</span>

transform.Find("Hand").Translate(0, 1, 0);</code>

Once you have found the transform in the hierarchy, you can use GetComponent to get to other scripts.

一旦你在层次视图找到transform,你便能用 GetComponent 获取其他脚本.

  • C#
  • JavaScript

<code><span>// Find the child named "Hand".
// On the OtherScript attached to it, set foo to 2.
// 找到子对象 "Hand".
// 获取OtherScript,设置foo为2</span>.
transform.Find("Hand").GetComponent(OtherScript).foo = 2;

<span>// Find the child named "Hand".
// Call DoSomething on the OtherScript attached to it.
// 获得子对象"Hand".
// 调用附属于它的 OtherScript的DoSomething.</span>
transform.Find("Hand").GetComponent(OtherScript).DoSomething("Hello");

<span>// Find the child named "Hand".
// Then apply a force to the rigidbody attached to the hand.
//获得子对象"Hand".
// 加一个力到刚体上</span>
transform.Find("Hand").rigidbody.AddForce(0, 10, 0);</code>

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

  • C#
  • JavaScript

<code><span>// Moves all transform children 10 units upwards!
//向上移动所有的子对象1个单位!</span>

for (var child : Transform in transform) {
    child.Translate(0, 10, 0);
}</code>

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

<code>function Start () {
    <span>// By name 通过名字</span>
    var go = GameObject.Find("SomeGuy");
    go.transform.Translate(0, 1, 0);

    
    var player = GameObject.FindWithTag("Player");
    player.transform.Translate(0, 1, 0);

}</code>

You can use GetComponent on the result to get to any script or component on the found game object

你可以用GetComponent获得指定游戏对象上的任意脚本或组件.

  • C#
  • JavaScript

<code>function Start () {
    <span>// By name 通过名字</span>
    var go = GameObject.Find("SomeGuy");
    go.GetComponent(OtherScript).DoSomething();

    
    var player = GameObject.FindWithTag("Player");
    player.GetComponent(OtherScript).DoSomething();
}</code>

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

<code>function OnTriggerStay( other : Collider ) {
    <span>// If the other collider also has a rigidbody
    // apply a force to it!
    // 如果碰撞体有一个刚体
    // 给他一个力!</span>

    if (other.rigidbody)
    other.rigidbody.AddForce(0, 2, 0);
}</code>

Or we can get to any component attached to the same game object as the collider.

或者我们可以通过collider得到这个物体的任何组件.

  • C#
  • JavaScript

<code>function OnTriggerStay( other : Collider ) {
    <span>// 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.</span>

    if (other.GetComponent(OtherScript))
    other.GetComponent(OtherScript).DoSomething();
}</code>

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

<code>using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
    void Start() {
        OtherScript other = FindObjectOfType(typeof(OtherScript));
        other.DoSomething();
    }
}</code>
陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
Win11 Xbox Game Bar怎么彻底卸载掉?分享Xbox Game Bar卸载方法Win11 Xbox Game Bar怎么彻底卸载掉?分享Xbox Game Bar卸载方法Feb 10, 2024 am 09:21 AM

Win11XboxGameBar怎么彻底卸载掉?XboxGameBar是系统中自带的游戏平台,它提供了用于游戏录制、截图和社交功能的工具,不过很是占用内存,也不好卸载,一些小伙伴想要将它卸载掉,但是不这道怎么彻底卸载,下面就来为大家介绍一下吧。方法一、使用Windows终端1、按【Win+X】组合键,或【右键】点击任务栏上的【Windows开始菜单】,在打开的的菜单项中,选择【终端管理员】。2、用户账户控制窗口,你要允许此应用对你的设备进行更改吗?点击【是】。3、执行以下命令:Get-AppxP

Black Myth: Wukong smashes the competition with 2.2 million Steam players mere hours after launch <sup style=\"font-size:0.5em;color:#999\" title=\"Black Myth Wukong smashes the compBlack Myth: Wukong smashes the competition with 2.2 million Steam players mere hours after launch <sup style=\"font-size:0.5em;color:#999\" title=\"Black Myth Wukong smashes the compAug 21, 2024 am 10:25 AM

The hype for Black Myth: Wukong has been felt globally as the game slowly crawled towards its launch date, and it didn't disappoint when it launched on August 20, having received a very warm welcome from the gaming community at large. After being onl

Square Enix shooter Foamstars to go free-to-play after haemorrhaging players following February releaseSquare Enix shooter Foamstars to go free-to-play after haemorrhaging players following February releaseAug 28, 2024 pm 01:09 PM

Square Enix's Foamstars initially launched to a very strong reception, reportedly beating out smash-hit Helldivers 2 on launch day — likely owing to its launch as part of the PS Plus monthly games program. However, that player count soon dropped stee

Sleeping Dogs: Definitive Edition for PC drops to an all-time low of $2.99 on GOGSleeping Dogs: Definitive Edition for PC drops to an all-time low of $2.99 on GOGAug 31, 2024 am 09:52 AM

Sleeping Dogs: Definitive Edition is currently available at a heavily discounted price of just $2.99 on GOG, offering a massive 85% reduction from its original price of $19.99. To take advantage of this deal, simply visit the game's page on GOG, add

Win11 Build 226&#215;1.2271 预览版更新,邀请所有 Windows Insider 频道用户体验新版 Microsoft StoreWin11 Build 226&#215;1.2271 预览版更新,邀请所有 Windows Insider 频道用户体验新版 Microsoft StoreSep 17, 2023 am 09:29 AM

微软公司今天面向Beta频道发布Win11Build226&#215;1.2271预览版更新同时,邀请所有WindowsInsider频道用户体验新版MicrosoftStore。MicrosoftStore最新版本为22308.1401.x.x全新的GamePass页面:微软表示引入了全新的专用页面,可以让玩家探索和订阅PCGamePass或者GamePassUltimate。用户可以了解GamePass诸多权益,包括独占游戏、折扣、免费福利以及EAPlay等等。微软希望用户在不跳转到

Sonic X Shadow Generations download size revealed for Nintendo Switch via official listingSonic X Shadow Generations download size revealed for Nintendo Switch via official listingJul 30, 2024 am 09:42 AM

Building on the success of its predecessor, Sonic Generations ($39 on Amazon), Sega is set to release Sonic X Shadow Generations on October 25th, 2024. A title that has been highly awaited for a while now, Sega is expanding on the original game's for

Microsoft gives away very popular RPG adventure gameMicrosoft gives away very popular RPG adventure gameSep 07, 2024 am 06:39 AM

Hero of the Kingdom II is an adventure game with RPG elements in which players take on the role of a simple farmer who lives with his sister in a quiet village. But the idyll is soon disturbed by pirate raids, whereupon they set out to save the kingd

Microsoft is giving away a retro construction game at no cost, but only for a limited period.Microsoft is giving away a retro construction game at no cost, but only for a limited period.Sep 07, 2024 pm 09:30 PM

Hero of the Kindgom II is not the only game from Lonely Troops currently on offer for free in the Microsoft Store. Until September 9, gamers can also get Townpolis for free - a construction game from 2008 that regularly costs $5. Townpolis puts playe

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前By尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
1 個月前By尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
4 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

Dreamweaver Mac版

Dreamweaver Mac版

視覺化網頁開發工具

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

SublimeText3 英文版

SublimeText3 英文版

推薦:為Win版本,支援程式碼提示!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境