DoCompareTag
Description
比较两个标签是否一致。它类似于Unity的CompareTag方法。
参数
Param | Type | Description |
---|---|---|
_tag | String | 独一无二的名字 |
方法
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);
}
}