coding with C#.
Im trying to use the "mouse_entered/exited" of the area2D node, with no avail.
the layout:

the Signal from Area2D, Shape2D (colisionShape2D) set to rect

code (C#):
private void _on_mouse_entered(){ if(!towerSelected) GetNode<Sprite>("Range").Visible = false; }
private void _on_mouse_exited(){ GetNode<Sprite>("Range").Visible = true; }
It's not even enter the function. there is no error or warning, and when im trying to get the location and shape of the area2D it give me it wanted location on the map.
I have no idea what is the problem, thx for the help 🙂