03-01-2024, 06:32 PM
Nice and simple editor, I'll use it when I write examples on how to use the library for enemy waves!
There's actually a built in command to insert stuff into an existing array. Nope, for some reason it's not documented, and F1 in NED shows no help. But here we go:
can be done with:
There's actually a built in command to insert stuff into an existing array. Nope, for some reason it's not documented, and F1 in NED shows no help. But here we go:
Code:
points = insert_into_array(points,i + 1,[mousex(),mousey()])
can be done with:
Code:
insert points, i + 1, [mousex(), mousey()]