I’m a little confused by the composite collider workflow and OnTrigger2D events being called twice. I have a tilemap with a rule-tile drawing runtime generated walls perfectly. The TileMapCollider2D shows all the pieces, and the CompositeCollider2D shows a beautifully simplified collider shape…

If I use the TileMap Collider without the composite, my CircleCollider2D trigger ‘agent’ activates OnTriggerEnter2D the moment it crosses the tilemap collider threshold. Agent can move inside the wall without activating any triggers, and only calls OnTriggerExit2D the moment it is 100% outside the collider. This is normal Physics2D behaviour.
However, using the Composite Collider, OnTriggerEnter2D activates when the agent first crosses the threshold into the tilemap wall, and when it first crosses the threshold when leaving. Similarly, OnTriggerExit2D actives the moment Agent pokes its nose out of the wall and again when it final exists the wall completely. This leads to nonsense situations like an agent entering a tilemap trigger and then registering exit while inside it.
This is on 2020 LTS. Is this a bug?