跳到主要内容

DoCompareTag

Description

比较两个标签是否一致。它类似于Unity的CompareTag方法。

参数

ParamTypeDescription
_tagString独一无二的名字

方法

public void DoCompareTag(string _tag)

例子

::: Caution 你必须将GameObjectRuntimeTag脚本添加到你将用于检索的gameObject中,并在GameObjectRuntimeTag.RuntimeTag字段中输入Tag。 :::

private void OnLoad(){
RuntimeTagManager.GetRuntimeTagManager.GetGameObjectByTag("Player",out GameObject tmp_Player);
if(tmp_Player.GetComponent<IRuntimeTag>().DoCompareTag("Player")){
Debug.Log(tmp_Player.name);
}
}