I have a Player node and Enemy node, and Player has an attack function
When the Player isattacking flag is set to true, the game checks for collisions with Enemy nodes and acts accordingly. Currently the way I detect collision is using bodyentered signal, but this doesn't work well for my case, because the attack's collisionshape will most likely already be colliding with the enemy when the attack function is called. So what I wanted to know, if there is some way to check for collision between two nodes, that is already occuring, as opposed to only when the body first enters the collision.