Exemplo n.º 1
0
    // Use this for initialization
    void Start()
    {
        HCController.Instance();
        HCController.Instance().SetUpdateLabel(UpdateText);
        HCController.Instance().SendAdjustEvent(HCConstants.ADJUST_GAME_OPEN);

#if UNITY_IOS
        Debug.Log("IDFA:" + UnityEngine.iOS.Device.advertisingIdentifier);
#endif
    }
Exemplo n.º 2
0
 public void TutorialCompleted()
 {
     HCController.Instance().SendAdjustEvent(HCConstants.ADJUST_TUTORIAL_COMPLETE);
 }
Exemplo n.º 3
0
 public void SessionEnded()
 {
     HCController.Instance().SendAdjustEvent(HCConstants.ADJUST_PLAYSESSION_END);
 }
Exemplo n.º 4
0
 public void PurchaseClicked()
 {
     HCController.Instance().SendAdjustEvent(HCConstants.ADJUST_IAP_CLICKED);
 }
Exemplo n.º 5
0
 public void ActivatedUserClicked()
 {
     HCController.Instance().SendAdjustEvent(HCConstants.ADJUST_ACTIVATED_USER);
 }
Exemplo n.º 6
0
 public void OpenMarket()
 {
     HCController.Instance().SendAdjustEvent(HCConstants.ADJUST_MARKET_OPEN);
 }
Exemplo n.º 7
0
 public void HideBannerAds()
 {
     HCController.Instance().HideBannerAds();
 }
Exemplo n.º 8
0
 public void ShowBannerAds()
 {
     HCController.Instance().ShowBannerAds();
 }
Exemplo n.º 9
0
 public void OnPressInterstitialVideoAds()
 {
     HCController.Instance().ShowInterstitialAds();
 }
Exemplo n.º 10
0
 public void OnPressRewardedVideoAds()
 {
     HCController.Instance().ShowRewardedAds();
 }