andrsGutirrz I need to detect if one of the pictures is inside an area2D. The images are draggable and they belong to node2D class. Do I hava to change the class of node2D to Body?
TwistedTwigleg I do not do much 2D work in Godot, so with that in mind... I think you need to change the Node2D nodes to collision body nodes, like StaticBody2D for example. Then the Area should be able to detect them with body_enter and body_exit signals.