Здравия! Я пытался сделать рекламу, но одна тупо не показывается... Помогите пожалуйста, есть варианты?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Advertisements;
public class ads : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
if (Advertisement.isSupported)
{
Advertisement.Initialize("4714877", false);
}
}
// Update is called once per frame
void Update()
{
}
void OnTriggerEnter(Collider other)
{
if (Advertisement.IsReady())
{
Advertisement.Show("video");
}
}
}