#why are these elements in array not being removed?

1 messages · Page 1 of 1 (latest)

cedar cliff
#

I am learning how to gd script and while i was making this flappy bird game i tried to make it so that when ever the pole count reaches to over 5 one get removed. i tried using an array for this however it is not getting removed. can anyone tell me why is this is happening?

shrewd sapphire
#

remove_at removes an item from an array. It does not remove the actual node from the game.
It just makes it not be in the array anymore.
You can use your_node_here.queue_free() to delete a node.