返回介绍

Component 组件

发布于 2019-12-18 15:37:35 字数 7624 浏览 985 评论 0 收藏 0

Namespace: UnityEngine
Inherits from: Object

Description 描述

Base class for everything attached to GameObjects.

所有附件到游戏对象的基类。

Note that your code will never directly create a Component. Instead, you write script code, and attach the script to a GameObject. See Also: ScriptableObject as a way to create scripts that do not attach to any GameObject.

请注意,您的代码将永远不会直接创建一个组件。而是,你写脚本代码,附加脚本到一个游戏对象上。另参见:ScriptableObject作为一种方法来创建脚本,不附加到任何游戏对象。

Variables 变量

animationThe Animation attached to this GameObject (null if there is none attached).
附加到此游戏对象的Animation(如无附加则为空)。
audioThe AudioSource attached to this GameObject (null if there is none attached).
附加到此游戏对象的AudioSource(如无附加则为空)。
cameraThe Camera attached to this GameObject (null if there is none attached).
附加到此游戏对象的Camera(如无附加则为空)。
colliderThe Collider attached to this GameObject (null if there is none attached).
附加到此游戏对象的Collider (如无附加则为空)。
collider2DThe Collider2D component attached to the object.
附件到此对象上的Collider2D组件。
constantForceThe ConstantForce attached to this GameObject (null if there is none attached).
附加到此游戏对象的ConstantForce (如无附加则为空)。
gameObjectThe game object this component is attached to. A component is always attached to a game object.
组件附加的游戏对象。组件总是被附加到游戏对象上。
guiTextThe GUIText attached to this GameObject (null if there is none attached).
附加到此游戏对象GUIText组件(如果没有则为空)。
guiTextureThe GUITexture attached to this GameObject (Read Only). (null if there is none attached).
附加到此游戏对象GUITexture 组件(只读)。(如果没有则为空)。
hingeJointThe HingeJoint attached to this GameObject (null if there is none attached).
附加到此游戏对象HingeJoint组件(如果没有则为空)。
lightThe Light attached to this GameObject (null if there is none attached).
附加到此游戏对象Light组件(如果没有则为空)。
networkViewThe NetworkView attached to this GameObject (Read Only). (null if there is none attached).
附加到此游戏对象NetworkView组件(如果没有则为空)。
particleEmitterThe ParticleEmitter attached to this GameObject (null if there is none attached).
附加到此游戏对象ParticleEmitter组件(如果没有则为空)。
particleSystemThe ParticleSystem attached to this GameObject (null if there is none attached).
附加到此游戏对象ParticleSystem组件(如果没有则为空)。
rendererThe Renderer attached to this GameObject (null if there is none attached).
附加到此游戏对象Renderer组件(如果没有则为空)。
rigidbodyThe Rigidbody attached to this GameObject (null if there is none attached).
附加到此游戏对象Rigidbody组件(如果没有则为空)。
rigidbody2DThe Rigidbody2D that is attached to the Component's GameObject
附加到此游戏对象Rigidbody2D 组件。
tagThe tag of this game object.
此游戏对象的标签。
transformThe Transform attached to this GameObject (null if there is none attached).
附加到此游戏对象Transform组件(如果没有则为空)。

Functions 函数

BroadcastMessageCalls the method named /methodName/ on every MonoBehaviour in this game object or any of its children.
在该游戏对象的和它的全部子对象上每一MonoBehaviour调用名为methodName的方法。
CompareTagIs this game object tagged with /tag/?
此游戏对象是否被标记为tag标签?
GetComponentReturns the component of Type /type/ if the game object has one attached, null if it doesn't.
如果游戏对象有附加type类型的组件,则返回,如果没有则为空。
GetComponentInChildrenReturns the component of Type /type/ in the GameObject or any of its children using depth first search.
返回此游戏对象上type类型的组件或任何它的子对象,使用深度首先搜索。
GetComponentInParentReturns the component of Type /type/ in the GameObject or any of its parents.
返回次对象或任何它的父对象type类型的组件。
GetComponentsReturns all components of Type /type/ in the GameObject.
返回此对象type类型的所有组件。
GetComponentsInChildrenReturns all components of Type /type/ in the GameObject or any of its children.
返回此游戏对象与其子对象所有type类型的组件。
GetComponentsInParentReturns all components of Type /type/ in the GameObject or any of its parents.
返回此游戏对象与其父对象所有type类型的组件。
SendMessageCalls the method named /methodName/ on every MonoBehaviour in this game object.
在此游戏对象所有MonoBehaviour上调用名称为methodName的方法。
SendMessageUpwardsCalls the method named /methodName/ on every MonoBehaviour in this game object and on every ancestor of the behaviour.
调用此游戏对象及其behaviour的父对象上所有MonoBehaviour名为methodName的方法。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文