- Edited
I am trying to get a dynamic number of arrays made, and then put them all in one array (or dictionary). If the dynamic size is 9, I would like to create nine arrays, each with a set number of variables.
I'm not using this code (it isn't "gdscript"), but as an example:
for count in 9:
var Array+str(count)[variable, another_variable, something_else, etc]
All_Arrays.append(Array + str(count))
how do I get the Array+str(count) part?
All_Arrays[Array0[0] == new_value
All_Arrays[Array7[2] == next_value