Skip to main content

Unity SDK

Minimal Unity integration with test/live operational guidance.

6 min readSDK Integration

Bootstrap

Initialize Argus in your Unity startup path.

using ArgusSDK;

public class ArgusBootstrap : MonoBehaviour
{
    void Start()
    {
        Argus.Init("ak_live_YOUR_KEY", projectId: "my-game");
    }
}

Test Mode vs Live Mode

Use test mode for deep QA instrumentation and live mode for lightweight production telemetry.

  • - Test mode: deeper state capture and higher QA depth
  • - Live mode: low-overhead event and performance signals
Default to test mode in non-production environments and gate live mode through release config.

Common Pitfalls

Most setup issues are environment mismatch or auth scope mismatch.

  • - Wrong project ID in init call
  • - Expired API key
  • - CORS or backend URL mismatch between local and production

Related Docs