Hello again,
Is there and easy, quick and efficient way to duplicate an array that I've spent oh-so-much effort filling and would like to keep the original intact while modifying the copy?
Develop games in your browser. Powerful, performant & highly capable.
Use a 'for each element' loop to set the values in the new one.
Yeah that was my first thought too, but figured there might be more efficient way of doing it. Thanks for the answer though!