커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
광고가 안떠요 ㅠㅠ
undefined주차
북마크
민*호
댓글
9
추천
1
조회수
67
조회수
67
답변 완료

* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.

* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.


제대로 따라한거 같은데 광고가 안떠요

그리고 project settings에 service부분에 전 선생님처럼 하위 메뉴로 ads가 표시가 안됩니다 이것도 혹시 맥이라서 그런가요??


아니면 버전이 달라서 그런걸까요?? 광고가 보고싶어요






작성한 코드 및 에러 메세지

adsManager.cs파일코드

using System.Collections;

using System.Collections.Generic;

using UnityEngine;

using UnityEngine.Advertisements;




public class adsManager : MonoBehaviour

{

  public static adsManager I;




  string adType;

  string gameId = "";




  void Awake()

  {

    I = this;




    if (Application.platform == RuntimePlatform.IPhonePlayer)

    {

      adType = "Rewarded_iOS";

      gameId = "본인번호";

    }

    else

    {

      adType = "Rewarded_Android";

      gameId = "본인번호";

    }




   

    Advertisement.Initialize(gameId, true);

   

  }




  public void ShowRewardAd()

  {

    if (Advertisement.IsReady())

    {

      ShowOptions options = new ShowOptions { resultCallback = ResultAds };

      

      Advertisement.Show(adType, options);

       

    }

  }




  void ResultAds(ShowResult result)

  {

    switch (result)

    {

      case ShowResult.Failed:

        Debug.LogError("광고 보기에 실패했습니다.");

        break;

      case ShowResult.Skipped:

        Debug.Log("광고를 스킵했습니다.");

        break;

      case ShowResult.Finished:

        // 광고 보기 보상 기능

        gameManager.I.retryGame();

        Debug.Log("광고 보기를 완료했습니다.");

        break;

    }

  }




  

}




------에러메시지 자세히


NullReferenceException: Object reference not set to an instance of an object

UnityEngine.Advertisements.Placeholder.HideSkipButton (UnityEngine.GameObject canvasGameObject) (at ./Library/PackageCache/com.unity.ads@3.7.5/Runtime/Advertisement/Platform/Editor/Placeholder.cs:179)

UnityEngine.Advertisements.Placeholder.Show (System.String placementId, System.Boolean allowSkip) (at ./Library/PackageCache/com.unity.ads@3.7.5/Runtime/Advertisement/Platform/Editor/Placeholder.cs:80)

UnityEngine.Advertisements.Platform.Editor.EditorPlatform+<>c__DisplayClass15_0.<Show>b__0 () (at ./Library/PackageCache/com.unity.ads@3.7.5/Runtime/Advertisement/Platform/Editor/EditorPlatform.cs:188)

UnityEngine.Advertisements.Utilities.CoroutineExecutor.Update () (at ./Library/PackageCache/com.unity.ads@3.7.5/Runtime/Advertisement/Utilities/CoroutineExecutor.cs:17)


류 발생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.

Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.

Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!

취소
 공유
취소
댓글 0
댓글 알림
나의얼굴