SDK Installation

Unity SDK

  1. Download the Unity SDK package from the G3X SDK page.

  2. Import the .unitypackage into your project:

    • Open Unity, go to AssetsImport PackageCustom Package, then select the SDK file.

  3. Add G3XManager Script:

    • Drag G3XManager onto an empty GameObject in your scene.

Unreal Engine SDK

  1. Download the Unreal G3X plugin.

  2. Install the plugin:

    • Extract files into your project’s Plugins folder.

  3. Enable the plugin in Unreal Engine:

    • Open EditPlugins, search for G3X, and activate it.

Web/HTML5 SDK

  1. Install via npm:

    bashSalinEditnpm install g3x-sdk
  2. Import in your JavaScript/TypeScript project:

    jsSalinEditimport { G3X } from 'g3x-sdk';
    const g3x = new G3X({ apiKey: 'YOUR_API_KEY' });

Last updated