Change Room Custom Data

Overview

Changes the room custom data.

Only the room owners can change the custom data of their rooms.

Example

NetworkClient.Lobby.ChangeRoomCustomData("New room name", (bool successful, SWLobbyError error) =>{
	if (successful) {
		Debug.Log("Changed room custom data.");
	}
	else {
		Debug.Log("Failed to change room custom data " + error);
	}
});

Last updated