When I start showing my ad, right before the ad starts playing the user can click on a X in the top right corner. This will stop the ad and in my AdCallBackHandler function my ShowResult is returning Showresult.Skipped.
I want to do something when the player skips the viedo after 15 seconds, and something else if the player watches the whole video. But I do not want to do something when the player stops the ad before it starts.
Is there a way of checking if the player actually have watched the ad?
---I found a bodge---
I set a timer so that the player had to wait 5 seconds after he started to watch the ad. Though this works, I would like to know if there is a better way.
New edit:
- It suddenly stopped working, and is abviously a very unreliable method. I need to find another way, but don't know what to do..
My Code:
IEnumerator ShowAd(){
if (Advertisement.IsReady())
{
skipAdOffset = false;
ShowOptions options = new ShowOptions();
options.resultCallback = AdCallBackHandler;
Advertisement.Show(null, options);
yield return new WaitForSeconds(5f);
skipAdOffset = true;
}
else
{
if (currentAdTimeOut > adTimeOut)
{
Debug.LogError("Failed to contact ad-server, probably no internet connection");
ShowNoConnectionPrompt();
}
else
{
yield return new WaitForSeconds(0.2f);
currentAdTimeOut += 0.2f;
StartCoroutine(ShowAd());
}
}
yield return new WaitForSeconds(0f);
}
void AdCallBackHandler(ShowResult result){
if (result == ShowResult.Finished)
{
//The whole ad is finishied showing
}
else if (result == ShowResult.Skipped)
{
//The ad was skipped
if(skipAdOffset == true)
{
//Ad was skipped after 15 seconds
}
}
else if(result == ShowResult.Failed)
{
Debug.Log("Error, could not show ad properly!");
}
}
↧