//例如我有个地面物体的触发器,tag为“land”,当角色落地触发后,判断触发器的tag是否为“land”; if (collider.collider.tag.CompareTo("land") == 0) //你要执行的代码 }
...全文