UnityEngine.Advertisements.UnityAdsInternal.CallUnityAdsVideoCompleted C# (CSharp) Méthode

CallUnityAdsVideoCompleted() public static méthode

public static CallUnityAdsVideoCompleted ( string rewardItemKey, bool skipped ) : void
rewardItemKey string
skipped bool
Résultat void
        public static void CallUnityAdsVideoCompleted(string rewardItemKey, bool skipped)
        {
            UnityAdsDelegate<string, bool> onVideoCompleted = UnityAdsInternal.onVideoCompleted;
            if (onVideoCompleted != null)
            {
                onVideoCompleted(rewardItemKey, skipped);
            }
        }