Combu  3.2.2
Unity API Documentation
Server Settings

Table of Contents

In this section you will learn how to create server settings and access them from client.

Server

You can create server settings in the administration console, in the section Settings.

Client

The client automatically loads the settings in CombuManager.instance.serverInfo.settings:

while (!CombuManager.isInitialized)
yield return null;
string mySetting = CombuManager.instance.serverInfo.settings["mySetting"].ToString();