Access to a Array in a <List>

Hi everybody !

I Have in my script a of Float[ ]

But i don’t know how to do to access to this float array directly .

Imagine i want to access to the number 2 of my list , then, the array .
For now i create a new Float[ ] = to [Index what i want], And after i access to the numero X of my array

But i don’t know the way to acess to this float without created this new Float [ ]

If someone know how to do i’ll really apreciate ^^!

Have a good day !

Just do:

mylist[2][1]; // 3rd array, 2nd element. :)
1 Like

Arf, more simple that i was expect, Sorry for the noobi question ! ^^

1 Like

No problem :slight_smile: learning is good.

1 Like