Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

IPurchasingModule

interface in UnityEngine.Purchasing.Extension

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual

Descripción

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()); } public IStore InstantiateMyManufacturerAppStore() { // Check for Manufacturer. "Android" used here for the sake of example. if (Application.platform == RuntimePlatform.Android) { return null; } else { return null }; } public IStoreExtension IManufacturerExtensions() { return null; } }

Funciones Públicas

ConfigureCalled when Unity IAP is loading your module. Register stores and associated extensions using the IPurchasingBinder.