I use Godot 3.
Hello, Lets's say I have the following array and it is structured like this.... slots[0] = "" slots{1] = 11 slots[2] = 1 slots[3] = "" slots[4] = 4
But I need some type of code that ill actrually sort the array structure so it ends up like this instead... slots[0] = 1 slots{1] = 4 slots[2] = 11 slots[3] = "" slots[4] = ""
Please help?