Beispiel #1
0
        private void Start()
        {
            if (NetworkConnectionService.HasInternetConnection() &&
                GoogleGamePlayService.PlayerIsAuthenticated())
            {
                socialBtn.gameObject.SetActive(true);
//                PlayGamesPlatform.Activate();
            }
        }
Beispiel #2
0
        public bool CanShowVideoAds()
        {
            if (!NetworkConnectionService.HasInternetConnection())
            {
                return(false);
            }

            return(true);
        }