Version: 2018.1
초기화
구매 시작

상품 메타데이터 브라우징

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);
}
초기화
구매 시작