Hello
Is it possible to create a multidimensionnal array. Actually a tridimensionnal array or a 2D array which each “value” is a class with two enum and 2 variables
thanks a lot for your help
Hello
Is it possible to create a multidimensionnal array. Actually a tridimensionnal array or a 2D array which each “value” is a class with two enum and 2 variables
thanks a lot for your help
This should work (unless you’re working on the iPhone):
var myarray = Array(Array(Array("hello", "world"),Array()),Array());
function Start () {
Debug.Log(myarray[0][0][0]);
}