I have a randomly generated 2d tilemap and children nodes (Control, Sprite, etc.) that are added to it through script, like this:
var player = preload('res://Characters/Player/Player.tscn').instance()
add_child(player)
Some of them are Area2D, others Control etc.
I want to know when the cursor is over any of the children, and also get info about it (ID, Object, etc...)