Skip to content

How to start

  1. Create an account at Balancy.
  2. Add a new game.
  3. Follow instructions for your platform.

Unity Integration

For your convenience, we've recorded the video of the integration.

  1. Download the latest version of the package.
  2. Import the Balancy plugin.
  3. Press Integration Info button on the Dashboard and copy game id with public key to use in the code:

    Screenshot

  4. 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.