當前位置:成語大全網 - 新華字典 - unity findobjectsoftype是什麽意思

unity findobjectsoftype是什麽意思

unity FindObjectsOfType 是遍歷對象。

如:

//遍歷場景中所有物體,獲取泛型T類型物體

object[] gameObjects;

gameObjects = GameObject.FindSceneObjectsOfType(typeof(Transform));

foreach (Transform go in gameObjects)

{

if (go.GetComponent() != null)

{

//獲取成功,添加相關操作

}

}