Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnityIAPBrowsingMetadata.md 400B

Browsing Product Metadata

Unity IAP retrieves localized product metadata during the initialization process, which you can access via the IStoreController products field.

foreach (var product in controller.products.all) {
    Debug.Log (product.metadata.localizedTitle);
    Debug.Log (product.metadata.localizedDescription);
    Debug.Log (product.metadata.localizedPriceString);
}