@onready var base: Area3D = $SubViewport/Main/Base func _on_area_3d_area_entered(area: Area3D) -> void: print(area) if area == base: print("it's working")
As you can tell from the video, when the player enters the area it prints out the correct node. However when I check if it is that specific node as declared in the script, nothing is printed.