This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.Purchasing; | |
/// <summary> | |
/// 課金処理を扱うクラスです。 | |
/// 非消費、サブスクリプション型は動作未検証です。 | |
/// Android/iOSのみ動作検証しています。 | |
/// INFO:[iOS]未購入のアイテムがあるとInitialize後すぐに認証ダイアログが表示されるので、呼び出すタイミングを調整してください |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
using UnityEngine.Advertisements; | |
using UnityEngine.Events; | |
/// <summary> | |
/// Unity Adsを制御するクラスです。 | |
/// </summary> | |
public class UnityAdsController : MonoBehaviour { |