UnityEngine.Advertisements.UnityAdsInternal.CallUnityAdsVideoCompleted C# (CSharp) Method

CallUnityAdsVideoCompleted() public static method

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