Need some help with a few things

Godot 4-4.2

I currently have a few issues, 1, how do I detect when a area3d is entered from the area3d script, every time I use area_entered it seems to completely ignore its collision layer and mask and just prints things infinitely

2 how do I access an attribute of a node in another script, whenever I try I get this message

  1. Show your code please using preformatted text with ``` where you tried to use the Area3D.
  2. You can only reference Nodes from within the same scene by drag and drop. You can reference other Nodes during runtime, e.g. using Area3D, by detecting which node entered the area, or by searching for a node with get_node() etc.
1 Like