/// <summary> /// 查詢目前畫面上是否有橫幅顯示 /// </summary> /// <returns>true 代表有, false 代表無</returns> public bool HasBannerView() { if (!CheckInit()) { Debug.LogError("AdFactory is not Init"); return(false); } return(adManager.HasBannerView()); }