I'm in the middle of a game where the character travels through different corridors and hallways to get their goal. As the player goes through the corridors, I want the walls to disappear when the player "passes" it. This might sound confusing so I provided a picture of what I want to happen:

I already have the function that makes the walls invisible, but I don't know how I should call it. I've tried calling it when
player.position.z > wall.position.z
But that causes each wall to become invisible when the player is halfway past it (at it's transform); I want to call it when the player is COMPLETELY past it. Is there any way I can check if the player is completely past the mesh of the wall on the z axis?
