GooglePlayServices.CommandLineDialog.Update C# (CSharp) Method

Update() protected method

Call the update event from the UI thread, optionally display / hide the progress bar.
protected Update ( ) : void
return void
        protected virtual void Update()
        {
            if (UpdateEvent != null) UpdateEvent(this);
            if (progressTitle != "")
            {
                progressBarVisible = true;
                EditorUtility.DisplayProgressBar(progressTitle, progressSummary,
                                                 progress);
            }
            else if (progressBarVisible)
            {
                progressBarVisible = false;
                EditorUtility.ClearProgressBar();
            }
        }
    }