返回介绍

Object 对象

发布于 2019-12-18 15:38:09 字数 3380 浏览 901 评论 0 收藏 0

Namespace: UnityEngine

Description 描述

Base class for all objects Unity can reference. Unity所有对象的基类。

Any public variable you make that derives from Object gets shown in the inspector as a drop target, allowing you to set the value from the GUI.

任何从Object继承的公共变量,将作为一个拖放目标显示在检视面板,允许你从GUI设置值。

Variables 变量

hideFlagsShould the object be hidden, saved with the scene or modifiable by the user?
由用户保存在场景或可修改的对象应该被隐藏么?
nameThe name of the object.
对象的名称

Functions 函数

GetInstanceIDReturns the instance id of the object.
返回对象的实例ID。
ToStringReturns the name of the game object.
返回对象的名称。

Static Functions 静态函数

DestroyRemoves a gameobject, component or asset.
删除一个游戏对象、组件或资源
DestroyImmediateDestroys the object obj immediately. You are strongly recommended to use Destroy instead.
立即销毁物体obj,强烈建议使用Destroy代替。
DontDestroyOnLoadMakes the object target not be destroyed automatically when loading a new scene.
加载新场景的时候使目标对象不被自动销毁。
FindObjectOfTypeReturns the first active loaded object of Type type.
返回Type类型第一个激活的加载的对象。
FindObjectsOfTypeReturns a list of all active loaded objects of Type type.
返回Type类型的所有激活的加载的物体列表。
InstantiateClones the object original and returns the clone.
克隆原始物体并返回克隆物体。

Operators 操作符

boolDoes the object exist?
对象是否存在?
operator !=Compares if two objects refer to a different object.
比较如果两个对象不相同。
operator ==Compares if two objects refer to the same.
比较如果两个物体相同。

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

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

发布评论

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