Unity IAP는 IStoreController
의 상품 필드를 통해 액세스할 수 있는 현지화된 상품 메타데이터를 초기화 프로세스 중에 검색해서 가져옵니다.
foreach (var product in controller.products.all) {
Debug.Log (product.metadata.localizedTitle);
Debug.Log (product.metadata.localizedDescription);
Debug.Log (product.metadata.localizedPriceString);
}