Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. We’re making changes to the Unity Runtime Fee pricing policy that we announced on September 12th. Access our latest thread for more information!
    Dismiss Notice
  3. Dismiss Notice

Question How to cheack if this new player

Discussion in 'Authentication' started by gugjuiu19, Apr 25, 2023.

  1. gugjuiu19

    gugjuiu19

    Joined:
    Jul 15, 2021
    Posts:
    5
    How to cheack if this new player or is old player
     
  2. RandolfKlemola

    RandolfKlemola

    Unity Technologies

    Joined:
    May 1, 2020
    Posts:
    125
    Hi @gugjuiu19 ,

    Thanks for reaching out! Are you using Analytics, by any chance? That is always a great way to find out of it's a new player or not. For example, if you know their USER_ID you can use this query in your SQL Data Explorer to find out when they sent their 1st event:


    SELECT
    USER_ID,
    PLAYER_START_DATE
    FROM
    EVENTS
    WHERE
    USER_ID = "XXXXX";


    Let me know if you have further questions.

    Best,
    Randy
     
    Julian-Unity3D likes this.