Getting Started
Integrate the Pixidus SDK quickly and efficiently. Follow these steps to get set up.
Installation
Unity
Install the SDK
Download the Pixidus SDK from here.
⚠️
Unity 2020 or newer is required. Beta versions are not supported.
Configure the SDK
Open Pixidus > Configure Settings in the Unity menu.
Then enter your SDK Key into the field and Save Settings to setup your project.
You can find your SDK Key from your Pixidus Profile Page .
Initialize the SDK
Add the following code snippet to your game to initialize Pixidus:
using Pixidus;
public class GameManager : MonoBehaviour
{
void Start()
{
PixidusSDK.Init(() => {
Debug.Log("SDK initialized");
});
}
}Start Using Modules
Your integration is complete! Now, enhance your game with Pixidus modules:
Need Help?
Visit our Community Forum or contact support@pixidus.com.
Last updated on