top of page

オブジェクト生成(位置指定なし)

    //生成するオブジェクト
    public GameObject test;

    
    void Start () {
        //testオブジェクトを生成
        Instantiate (test);
    }

 

bottom of page