Exemplo n.º 1
0
    private IEnumerator SignUpSelectedInternal()
    {
        while (!m_user.IsLoggedIn())
        {
            yield return(null);
        }

        Mixpanel.Track("New User Signed Up!");

        yield return(SetUID(m_user.m_id));

        Mixpanel.Alias(m_analyticsData.m_uid);

        Mixpanel.people.Name  = m_user.m_handle;
        Mixpanel.people.Email = m_user.m_email;

        Mixpanel.Track("Post Alias Mixpanel Error!"); // Mixpanel always errorneously reports the first event after an Alias to be by an Anonymous user...

        if (Debug.isDebugBuild)
        {
            Debug.Log("------- VREEL: Analytics.SignUpSelectedInternal() Alias and Identify: " + m_analyticsData.m_uid);
        }
    }
Exemplo n.º 2
0
 public void SignUp()
 {
     Mixpanel.Alias(input.text);
     MakeEventDeleyed("SignUp");
 }