From 2261c4be74865e49c2c5ff26bca489c888b1fd1e Mon Sep 17 00:00:00 2001 From: 99jamin <99jamin56@gmail.com> Date: Mon, 31 Mar 2025 14:52:00 +0900 Subject: [PATCH] =?UTF-8?q?DO-83=20[Fix]=20=EA=B4=91=EA=B3=A0=20=EC=B4=88?= =?UTF-8?q?=EA=B8=B0=ED=99=94=20=ED=9B=84=20=EB=A1=9C=EB=93=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Script/UI/PanelChildController/AdManager.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Assets/Script/UI/PanelChildController/AdManager.cs b/Assets/Script/UI/PanelChildController/AdManager.cs index 991e5ed..c44c549 100644 --- a/Assets/Script/UI/PanelChildController/AdManager.cs +++ b/Assets/Script/UI/PanelChildController/AdManager.cs @@ -13,10 +13,11 @@ public class AdManager : Singleton base.Awake(); // Google Mobile Ads 초기화 - MobileAds.Initialize(initStatus => { }); - - // 광고 로드 - LoadRewardedInterstitialAd(); + MobileAds.Initialize(initStatus => + { + LoadRewardedInterstitialAd(); // 광고 로드 + }); + } protected override void OnSceneLoaded(Scene scene, LoadSceneMode mode)