Version: 2017.1

IStoreConfiguration

interface in UnityEngine.Purchasing.Extension

マニュアルに切り替える

説明

ストアの拡張設定すべてに共通のインターフェース

初期化前に IPurchasingModule によって行われる Unity IAP 設定に使用します。ConfigurationBuilder を通じて IPurchasingModule の設定中にストアに紐づけされます。

サンプルストア設定インターフェース (実装が必要) は、所有する購入モジュールがストア設定で必要になる前にインスタンス化しておきます。

using UnityEngine.Purchasing.Extension;

// Sample store config. Implementation can be used by the user, // and accessed by the owning purchasing module during store // instantiation. public interface ISampleConfiguration : IStoreConfiguration { // Request access to sample debugging backend bool useSampleStoreDebuggingBackend { get; set; } }