UnityAPI手册-2019.4官网版
文集大纲加载中……
本文档使用 MrDoc 发布
-
+
首页
GameObject.tag
# [GameObject](https://docs.unity3d.com/cn/2019.4/ScriptReference/GameObject.html).tag public string **tag** ; ## 描述 此游戏对象的标签。 可使用标签来识别游戏对象。 使用标签前,必须在[标签和层管理器](https://docs.unity3d.com/cn/2019.4/Manual/class-TagManager.html)中声明它们。 **注意:** 您不应通过 [Awake()](https://docs.unity3d.com/cn/2019.4/ScriptReference/MonoBehaviour.Awake.html) 或 [OnValidate()](https://docs.unity3d.com/cn/2019.4/ScriptReference/MonoBehaviour.OnValidate.html) 方法设置标签。这是因为组件唤醒的顺序是不确定的,因此可能导致意外行为,例如标签在唤醒时被覆盖。如果尝试执行此操作,Unity 将生成一条警告:“SendMessage cannot be called during Awake, CheckConsistency, or OnValidate”。 另请参阅 [GameObject.CompareTag](https://docs.unity3d.com/cn/2019.4/ScriptReference/GameObject.CompareTag.html)。 ``` using UnityEngine; public class Example : MonoBehaviour { void Start() { //Set the tag of this GameObject to Player gameObject.tag = "Player"; } private void OnTriggerEnter(Collider other) { //Check to see if the tag on the collider is equal to Enemy if (other.tag == "Enemy") { Debug.Log("Triggered by Enemy"); } } } ```
da
2022年5月26日 18:00
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
关于 MrDoc
觅思文档MrDoc
是
州的先生
开发并开源的在线文档系统,其适合作为个人和小型团队的云笔记、文档和知识库管理工具。
如果觅思文档给你或你的团队带来了帮助,欢迎对作者进行一些打赏捐助,这将有力支持作者持续投入精力更新和维护觅思文档,感谢你的捐助!
>>>捐助鸣谢列表
微信
支付宝
QQ
PayPal
Markdown文件
分享
链接
类型
密码
更新密码