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

FindObjectsOfType()

时间:2019-07-31 19:04:17      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:soft   object   eric   col   --   第一个   i++   tar   system   

代码演示:

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

public class FindObjectOfType : MonoBehaviour {

private GameObject[] things;
private GameObject thing;

void Start () {

things = FindObjectsOfType<GameObject>();
thing = FindObjectOfType<GameObject>();

Debug.Log("第一个" + thing.name);
for(int i = 0; i < things.Length; i++)
{
Debug.Log(things[i].name);
}
}
}
--------------------- 

FindObjectsOfType()

标签:soft   object   eric   col   --   第一个   i++   tar   system   

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

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