How to get local currency u3dxt

using the u3dxt native plugin how would you get local currency for a product?

You can use the SKProduct.localizedPrice property. http://u3dxt.com/api/?topic=html/P_U3DXT_iOS_Native_StoreKit_SKProduct_localizedPrice.htm

SKProduct product = IAPXT.GetProduct(productID);
Debug.Log("localized price: " + product.localizedPrice);

Please see Assets/U3DXT/Examples/iap/IAPTest for more example uses.