Hitbox area and hurtbox area don't collide

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By 2plus2makes5

Hi all, i’m trying to make my 2.5d character to punch, if the hitbox area(3d) is not animated(it’s always enabled and at its size and position) it gets detected by the hurtbox area(that doesn’t move or change), but if i animate the hitbox by disabling/enabling it or changing its extents and position it doesn’t get detected by the other hurtbox area.
I tried various Area, CollisionShape and AnimationPlayer settings but nothing.
Suggestions?

:bust_in_silhouette: Reply From: 2plus2makes5

In case anyone is interested after many tries i have found a solution, in order to get the signal of on_X_area_entered to work correctly the colliding area must translate or resize, it’s like if Godot considers changed only the Areas that have translated or resized, instead i was translating and changing the size of the CollisionShape while keeping the Area unchanged.