SDK Installation
Unity SDK
Download the Unity SDK package from the G3X SDK page.
Import the
.unitypackageinto your project:Open Unity, go to
Assets→Import Package→Custom Package, then select the SDK file.
Add G3XManager Script:
Drag
G3XManageronto an empty GameObject in your scene.
Unreal Engine SDK
Download the Unreal G3X plugin.
Install the plugin:
Extract files into your project’s
Pluginsfolder.
Enable the plugin in Unreal Engine:
Open
Edit→Plugins, search for G3X, and activate it.
Web/HTML5 SDK
Install via npm:
bashSalinEditnpm install g3x-sdkImport in your JavaScript/TypeScript project:
jsSalinEditimport { G3X } from 'g3x-sdk'; const g3x = new G3X({ apiKey: 'YOUR_API_KEY' });
Last updated