2. Automatic logs
1. RetentionCheckService
Debug.Log("Retention of the player is: " + RetentionCheckService.Retention);
if(RetentionCheckService.RetentionChanged) {
Debug.Log("This is the player's first login of the day");
} else {
Debug.Log("This isn't a player's first login of the day");
}
Debug.Log("The player's first login date is: " + RetentionCheckService.FirstLoginDate);2. PlayTimeCheckService
Last updated