private void OnVideoFinishedWithInfo(AdColonyAd ad)
 {
     ++onVideoFinishedWithInfoCounter;
     Debug.Log("On Video Finished With Info, ad Played: " + ad.toString());
     if (ad.iapEnabled)
     {
         AdColony.NotifyIAPComplete("ProductID", "TransactionID", null, 0, 1);
     }
     Resume();
 }
Exemple #2
0
 private void OnVideoFinishedWithInfo(AdColonyAd ad)
 {
     Debug.Log("On Video Finished With Info, ad Played: " + ad.toString());
     if (ad.iapEnabled)
     {
         Debug.Log("Calling Notify IAP Complete");
         AdColony.notifyIAPComplete("ProductID", "TransactionID");
         Debug.Log("Notified of IAP Complete");
     }
     Resume();
 }
 private void OnVideoFinishedWithInfo( AdColonyAd ad )
 {
     ++onVideoFinishedWithInfoCounter;
     Debug.Log("On Video Finished With Info, ad Played: " + ad.toString() );
     if(ad.iapEnabled) {
       AdColony.NotifyIAPComplete("ProductID", "TransactionID", null, 0, 1);
     }
     Resume();
 }
 private void OnVideoFinishedWithInfo( AdColonyAd ad )
 {
     Debug.Log("On Video Finished With Info, ad Played: " + ad.toString() );
     if(ad.iapEnabled) {
       Debug.Log("Calling Notify IAP Complete");
       AdColony.notifyIAPComplete("ProductID", "TransactionID");
       Debug.Log("Notified of IAP Complete");
     }
     Resume();
 }