How to start¶
- Create an account at Balancy.
- Add a new game.
- Follow instructions for your platform.
Unity Integration¶
For your convenience, we've recorded the video of the integration.
- Download the latest version of the package.
- Import the Balancy plugin.
-
Press Integration Info button on the Dashboard and copy game id with public key to use in the code:
-
Call the
Init
method with those arguments:
Balancy.Main.Init(new Balancy.AppConfig {
ApiGameId = YOUR_GAME_ID,
PublicKey = YOUR_PUBLIC_KEY,
Environment = Balancy.Constants.Environment.Development,
OnReadyCallback = responseData => { Debug.Log("Balancy Initialized: " + responseData.Success); }
});
Other platforms
If you are looking for any other platform, please feel free to contact us.
Further reading¶
After completing basic integration with your target platform, you can start learning about LiveOps and A/B tests.
Or, if you want to explore how to work with balance data, you can check DataEditor section.