/**
  * <summary>Leave the Real Time Session</summary>
  */
 public void LeaveSession()
 {
     if (!_rtConnected)
     {
         return;
     }
     _rtConnected = false;
     _gameSparksRtUnity.Disconnect();
     OnLogEntry(LogEntryFactory.CreateLeaveSessionLogEntry());
 }