Diarkis Field Module - How To Disappear

When you need to remove yourself from Diarkis Field, you simply invoke "Disappear" from the client. The other remote user clients will raise "OnDisappear" event so that they can handle your disappearance.

When you need to re-enter Diarkis Field, invoke "SyncInit" and "Sync".

C# Code Example:

// handle other user client's disappearance
field.OnDisappear += (string userID) =>
{
// handle the disappearance of the user
};

// remove yourself from Diarkis Field
field.Disappear();