【3Dゲームエンジン】Unity質問スレッド13 [転載禁止]©5ch.net
■ このスレッドは過去ログ倉庫に格納されています
0888名前は開発中のものです。
2014/12/06(土) 04:11:31.58ID:mf0JoPihpublic class EnemyManager : MonoBehaviour {
public Transform[,] _spawnPoints;
void Start ()
{
//Allocate
_spawnPoints = new Transform[4,3];
_spawnPoints[0,0].position = new Vector3(1,1,1);
Debug.Log (_spawnPoints[0,0].position);
}
}
■ このスレッドは過去ログ倉庫に格納されています