DO-83 [Fix] 광고 초기화 후 로드

This commit is contained in:
99jamin 2025-03-31 14:52:00 +09:00
parent f7b490ff27
commit 2261c4be74

View File

@ -13,10 +13,11 @@ public class AdManager : Singleton<AdManager>
base.Awake();
// Google Mobile Ads 초기화
MobileAds.Initialize(initStatus => { });
MobileAds.Initialize(initStatus =>
{
LoadRewardedInterstitialAd(); // 광고 로드
});
// 광고 로드
LoadRewardedInterstitialAd();
}
protected override void OnSceneLoaded(Scene scene, LoadSceneMode mode)