码迷,mamicode.com
首页 > 其他好文 > 详细

GameObject.FindGameObjectWithTag()

时间:2019-07-31 18:51:54      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:deb   public   sys   generic   mono   ons   void   find   using   

代码演示:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class TagFind : MonoBehaviour {

private GameObject thing;
private GameObject[] things;
void Start (http://www.my516.com) {

things = GameObject.FindGameObjectsWithTag("Player");
thing = GameObject.FindGameObjectWithTag("Player");

Debug.Log(things.Length);
Debug.Log(thing.name);

}
}

--------------------- 

GameObject.FindGameObjectWithTag()

标签:deb   public   sys   generic   mono   ons   void   find   using   

原文地址:https://www.cnblogs.com/liyanyan665/p/11278031.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!