(From our Discord server)
Question
I am interested in knowing when the player starts the game, whether I am correctly connected to the Coherence server
Answer
You can check the status of the CoherenceBridge in the scene. For instance:
if(monoBridge.isConnected)
{
// do things
}```