void OnRemoteInvitationFailureHandler(RemoteInvitation remoteInvitation, REMOTE_INVITATION_ERR_CODE errorCode) { string msg = string.Format("OnRemoteInvitationFailure channel:{0}, callee:{1}", remoteInvitation.GetChannelId(), remoteInvitation.GetCallerId()); Debug.Log(msg); messageDisplay.AddTextToDisplay(msg, Message.MessageType.Info); }
void OnRemoteInvitationCanceledHandler(RemoteInvitation remoteInvitation) { string msg = string.Format("OnRemoteInvitationCanceled channel:{0}, callee:{1}", remoteInvitation.GetChannelId(), remoteInvitation.GetCallerId()); Debug.Log(msg); messageDisplay.AddTextToDisplay(msg, Message.MessageType.Info); }
void OnRemoteInvitationReceivedHandler(RemoteInvitation remoteInvitation) { Debug.Log("OnRemoteInvitationReceivedHandler " + remoteInvitation.GetCallerId() + " " + remoteInvitation.GetChannelId()); }