Hey all, I'm having trouble finding how to turn a string back into an array. I've got an array of Vector3s that I'm sending over the network via JSON string (since the array has a variable length) so I need to turn it back into an array of Vector3 on the other end of the network. I can make the JSON string easily, and send it easily, all the problems are on the other end.
func test_json(json: String):
var new_array = JSON.new()
I've tried a few things from here, but nothing seems to be working right. I know I need to create a variable that is an array, but how to fill that array I can't seem to find the appropriate code. Any help?