Simple 2D game based on avoiding asteroids while controlling a rocket
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

9 lines
169 B

extends Area2D
onready var gameNode = get_node("/root/Game")
func _on_Coin_body_entered(body):
if body.name == "Rocket":
gameNode.numOfCoins += 1
queue_free()