コード例 #1
0
        /// <summary>
        /// Shows the standard Google Play Games quests user interface, which
        /// allows the player to browse quests, according to the provided filters.
        /// </summary>
        public void ShowQuestsUI(int[] questSelectors)
        {
            if (!IsAuthenticated())
            {
                Logger.e("ShowQuestsUI can only be called after authentication.");
                return;
            }

            Logger.d("ShowQuestsUI");
            mClient.ShowQuestsUI(questSelectors);
        }