top of page

(タグ型)

private GameObject Test;      

Test = GameObject.FindGameObjectWithTag("TEST");

 

(パブリック型)

public GameObject Test

(プライベート型)

private GameObject Test;

//オブジェクトの名前がTestのオブジェクトを探す
Test= GameObject.Find("Test");

オブジェクトを探す

bottom of page