docs.unity3d.com
    Show / Hide Table of Contents

    Remote Config files

    Creation

    Right-click the Project Window, then select Assets > Create > Remote Config to create a Remote Config file.

    File Format

    For the files to be properly parsed they need to respect the json schema that can be found here: https://ugs-config-schemas.unity3d.com/v1/remote-config.schema.json

    Example

    Following example contains 3 keys:

    1. A string key "name"
    2. An long key "id"
    3. A json key "user_schema"
    {
      "$schema": "https://ugs-config-schemas.unity3d.com/v1/remote-config.schema.json",
      "entries": {
        "name": "example_name",
        "id": "10000000000",
        "user_schema": {
            "user_id_key": "user_id",
            "user_name_key": "user_name"
        }
      },
      "types": {
          "id": "LONG"
      }
    }
    

    File Deployment

    Once created, files can be deployed to the environment selected. To deploy a file go to Window > Deployment (2021.3+) or Services > Deployment (2022+).
    Once opened, the Deployment Window will display all of your local remote config files and enable you to deploy them.
    For more information on the expected deployment window workflow, please consult the "com.unity.services.deployment" package's documentation.

    Back to top
    Copyright © 2023 Unity Technologies
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on Friday, November 3, 2023