광고 및 결제 게등위 테스트 버전으로
This commit is contained in:
parent
9110ba5276
commit
58847757ea
|
|
@ -10,17 +10,20 @@ public class ADInfo : MonoBehaviourSingletonTemplate<ADInfo>
|
|||
//public static ADInfo Ins;
|
||||
|
||||
private RewardedInterstitialAd short_rewardedInterstitialAd;
|
||||
string rewardedInterstitialAd_ID = "ca-app-pub-6390804219581974/3468554834";
|
||||
//string rewardedInterstitialAd_ID = "ca-app-pub-6390804219581974/3468554834";
|
||||
string rewardedInterstitialAd_ID = "ca-app-pub-3940256099942544/1033173712"; // 테스트
|
||||
|
||||
private InterstitialAd m_interstitialAd;
|
||||
string InterstitialAd_ID = "ca-app-pub-2550554896492831/9309815439";
|
||||
//string InterstitialAd_ID = "ca-app-pub-2550554896492831/9309815439";
|
||||
string InterstitialAd_ID = "ca-app-pub-3940256099942544/1033173712"; // 테스트
|
||||
|
||||
private RewardedAd long_rewardedAd;
|
||||
string longAD = "ca-app-pub-2550554896492831/2536577422";
|
||||
//string longAD = "ca-app-pub-3940256099942544/5224354917"; // 테스트
|
||||
//string longAD = "ca-app-pub-2550554896492831/2536577422";
|
||||
string longAD = "ca-app-pub-3940256099942544/5224354917"; // 테스트
|
||||
|
||||
BannerView _bannerView;
|
||||
string bannerAD = "ca-app-pub-2550554896492831/2225586237";
|
||||
//string bannerAD = "ca-app-pub-2550554896492831/2225586237";
|
||||
string bannerAD = "ca-app-pub-3940256099942544/6300978111"; // 테스트
|
||||
|
||||
byte GetReward = 0;
|
||||
Action Action_success, Action_fail;
|
||||
|
|
|
|||
|
|
@ -224,6 +224,10 @@ public class InappInfo : MonoBehaviourSingletonTemplate<InappInfo>
|
|||
// 구매 시도
|
||||
public void BuyProduct(string productId, Action success, Action fail = null)
|
||||
{
|
||||
// 게등위 테스트
|
||||
success?.Invoke();
|
||||
return;
|
||||
|
||||
m_OneStoreIapCallBack.act_success = act_success = success;
|
||||
m_OneStoreIapCallBack.act_fail = act_fail = fail;
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ public class ShopCard : MonoBehaviour
|
|||
m_Data = table_shop.Ins.Get_Data(m_ID);
|
||||
if (t_peakefficiency != null) t_peakefficiency.text = m_Data.s_PeakEffective;
|
||||
t_goods.text = m_Data.s_Items;
|
||||
t_price.text = m_Data.e_BuyType == eShopBuyType.IAP ? $"\\{m_Data.n_Price}" : m_Data.n_Price.ToString();
|
||||
t_price.text = m_Data.e_BuyType == eShopBuyType.IAP ? $"{m_Data.n_Price}원" : m_Data.n_Price.ToString();
|
||||
Set_UI();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
게등위 버전
|
||||
- 테스트 광고
|
||||
- 결제 해제
|
||||
|
||||
상점은 이야기 후 다시
|
||||
광고 제거
|
||||
- 광고 딜레이 체크
|
||||
|
|
|
|||
Loading…
Reference in New Issue