This gameobject keeps getting created in my editor scene (not the game scene).
I think it’s created by some sort of async task that is not stopped, It seems to get created just before PlayMode is entered, but since I’m really struggling with physics baking processes, maybe this is created by something I inadvertently do?
This is an internal component that’s needed by the Physics Debug Display to trigger the debug draw at the right moment.
You can safely ignore it.
It’s not caused by anything you do, other than the fact that you added a Physics Debug Display to your scene.
Fun fact: hiding the game object with the draw component in the hierarchy also doesn’t call its OnDrawGizmos() function anymore, which then deactivates the debug display hehe
The workaround I found is to hide its parent in the hierarchy, which works like a charm. The debug display shows up without this internal game object appearing in the hierarchy anymore.