How do I know if I'm correctly connected to the Coherence server?

(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
}```