Hi !
How do I convert a string \text to an array? The size of the array is not prefixed.
Thank you very much!
Ran
Develop games in your browser. Powerful, performant & highly capable.
Set the Array to Size 0 at the beginning:
Array: Set size to (0, 1, 1)
Now you can copy the string to the array:
+ System: For "" from 0 to len(string)-1
-> Array: Push back mid(string,LoopIndex,1) on X axis
thank you!