Setup Your Game

Step 1 of 250% Complete
1
Project
2
SDK

Integrate Tula SDK

Add Tula to your game and test the connection

Step 1: Generate API Key

Generate a secure API key for your game:

Step 2: Integration Code

Add this code to your project to initialize the Tula SDK

using Tula;

public class TulaBootstrap : MonoBehaviour
{
    void Start()
    {
        TulaSDK.Init("YOUR_API_KEY");
    }

    public void OnLevelComplete()
    {
        TulaSDK.PresentUpsell(new TulaUpsellOptions { Trigger = "level_complete" });
    }
}