Area2D
calls the body_entered
signal multiple times
In Godot, when calling reparent
on a Node2D
, this will cause the Area2D
to call body_exited
immediately followed by body_entered
. For example, this pseudocode…
…results in the following output:
entered
reparent
exited
entered
global position
reparent
global position
exited