Answers for "how to find if something is colliding in godot"

Go
0

how to find if something is colliding in godot

func _on_Flowers_body_entered(body):
	if body.name == "Player":
		get_tree().queue_delete(self)
Posted by: Guest on June-28-2020

Code answers related to "how to find if something is colliding in godot"

Browse Popular Code Answers by Language