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