Skip to main content

Install the AGS Game SDK - Initial setup - (Unity module)

Last updated on June 12, 2024

About

The AccelByte Gaming Services (AGS) Game SDK for Unity acts as a bridge between your game and AGS. It provides a way to integrate AGS into your game. The AGS Game SDK can be used in both your game's client and server builds. In this tutorial, you are going to install the AGS Game SDK using the Unity Package Manager (UPM) and get it set up to use with Byte Wars.

note

This tutorial installs the AGS Game SDK for Unity directly from the Unity Editor using UPM. If you'd like to manually download the AGS Game SDK, you can do so from the AccelByte Game SDK for Unity GitHub repository.

Check the latest release

Before continuing with this tutorial, check the latest released version of the AGS Game SDK for Unity.

Install the AGS Game SDK using UPM

  1. With Byte Wars open in Unity, go to Window > Package Manager.

  2. Click the + icon on the Package Manager window and click Add package from git URL...

    Image shows the Unity Package Manager window with the plus icon highlighted Unity Byte Wars initial setup

  3. Paste the following link into the URL field and click Add: https://github.com/AccelByte/accelbyte-unity-sdk.git

    Image shows the Unity Package Manager window with the AccelByte Game SDK git URL pasted in Unity Byte Wars initial setup

Set up a public IAM Client

In order for the AGS Game SDK to be able to access your client environment, you will need to add a public IAM Client in the AGS Admin Portal.

  1. Log in to the AGS Admin Portal and go to your game namespace dashboard.

  2. Go to Game Setup > Games and Apps > IAM Clients and click Create IAM Clients.

  3. On the new page, fill out the fields using the configurations below.

    • Create Options: the available options to create a new IAM client. Choose the Create from Template option to create a new IAM client from a template.
    • Select Template: the template to create a new IAM client. Select the Game Client option.
    • Client Name: the name of the IAM client. Set it to ByteWars-GameClient.
    • Client Type: the confidentiality of the IAM client. Select the Public option.
  4. Leave all other fields unchanged and click Create to create the new IAM Client.

Configure AGS Game SDK plugins

To let the the game project know you are using the AGS Game SDK, you need to create the configuration files in the /Asset/Resources/ folder. For the detailed installation guide, see Install the AGS Game SDK for Unity.

You will need these files in your project under /Asset/Resources/ before you can proceed:

  • AccelByteSDKConfig.json
  • AccelByteSDKOAuthConfig.json

Configure the AGS Game SDK to use the IAM client

You will need to create the configuration files with your IAM Client Credentials. This can be done by adding configuration values to the AccelByteSDKConfig.json and AccelByteSDKOAuthConfig.json files.

  1. Open your project with your IDE (e.g., Visual Studio).

  2. Inside /Asset/Resources/AccelByteSDKConfig.json, input your client credentials using the following format:

    {
    "Default": {
    "Namespace": "<game_namespace_id>",
    "UsePlayerPrefs": true,
    "EnableDebugLog": false,
    "DebugLogFilter": "Log",
    "BaseUrl": "https://<game_namespace_id>.dev.gamingservices.accelbyte.io",
    "RedirectUri": "http://127.0.0.1",
    "PublisherNamespace": ""
    }
    }
    info
    • Namespace is the namespace ID of your game namespace.
    • BaseUrl is the base URL made out of your game namespace ID combined with your AGS Admin Portal environment.
    tip
    • To find your game namespace ID, go to your Admin Portal and navigate to the Namespace page where your game namespaces are listed. Then, locate your game namespace under the GAMES section and click on the gear icon. On the new page, locate the Namespace ID property and there you can find your game namespace ID value.

    • Similarly, to find your publisher namespace ID, go to your Admin Portal and navigate to the Namespace page where your game namespaces are listed. Then, locate your publisher namespace under the PUBLISHER section and click on the gear icon. On the new page, locate the Namespace ID property and there you can find your publisher namespace ID value.

  3. Open /Asset/Resources/AccelByteSDKOAuthConfig.json and input your credential using the following format:

    {
    "Default": {
    "ClientId": "<game_iam_client_id>",
    "ClientSecret": ""
    }
    }
    info
    • ClientId is randomly generated and used to uniquely identify your public IAM client.
  4. Save the files and your game SDK configuration is complete.

Resources