Manual integration
Smartlook can be manually integrated into various analytic frameworks using our IntegrationListener.
Listener can be registered like this:
public class IntegrationListener : SmartlookUnity.IntegrationListener
{
    public override void onSessionReady(string dashboardSessionUrl)
    {
        Debug.Log("dashboardSessionUrl : " + dashboardSessionUrl);
    }
    public override void onVisitorReady(string dashboardVisitorUrl)
    {
        Debug.Log("dashboardVisitorUrl : " + dashboardVisitorUrl);
    }
}
SmartlookUnity.Smartlook.RegisterIntegrationListener(new IntegrationListener());Integration samples
Samples adjusted for specific analytic tools can be found in the Integrations documentation:
