Version: 2017.1

IPurchasingModule

interface in UnityEngine.Purchasing.Extension

매뉴얼로 전환

설명

A Unity IAP configuration of one or more stores.

Store implementations must provide an implementation of this interface. Use IPurchasingModule implementations with the ConfigurationBuilder to extend Unity IAP's store functionality.

using UnityEngine;

class MyPurchasingModule : IPurchasingModule { public void Configure(IPurchasingBinder binder) { binder.RegisterStore("MyManufacturerAppStore", InstantiateMyManufacturerAppStore()); // Our Purchasing service implementation provides the real implementation. binder.RegisterExtension<IManufacturerExtensions>(new FakeManufacturerExtensions()); }

IStore InstantiateMyManufacturerAppStore() { // Check for Manufacturer. "Android" used here for the sake of example. // In your implementation, return platform-appropriate store instead of "null". if (Application.platform == RuntimePlatform.Android) { return null; } else { return null; } }

IStoreExtension IManufacturerExtensions() { return null; } }

Public 함수

ConfigureCalled when Unity IAP is loading your module. Register stores and associated extensions using the IPurchasingBinder.
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961