UnityEngine.Social.ReportProgress C# (CSharp) Method

ReportProgress() public static method

public static ReportProgress ( string achievementID, double progress, Action callback ) : void
achievementID string
progress double
callback Action
return void
        public static void ReportProgress(string achievementID, double progress, Action<bool> callback)
        {
            Active.ReportProgress(achievementID, progress, callback);
        }