public void onReceiveScheme(string scheme) { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "Scheme", scheme); }
public void onDeleteLinkingFailure(NError error) { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "연동", error.message); linkingStatusUpdate(); }
public void onPushStatusFailure(NError error) { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "Push Status", error.message); }
public void onPurchaseCancel() { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "결제", "결제를 취소 하였습니다."); }
public void onCreateLinkingCancel() { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "연동", "연동이 취소 되었습니다."); linkingStatusUpdate(); }
public void onPurchaseSuccess(NPurchaseInfo purchaseInfo) { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "결제", "결제 성공하였습니다."); }
public void onPurchaseFailure(NError error) { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "결제", error.message); }
public void onCouponSuccess() { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "쿠폰", "쿠폰 아이템이 지급되었습니다."); }
public void onCouponFailure(NError error) { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "쿠폰", error.message); }
public void onLogoutFailure(NError error) { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "로그아웃", error.message); }
public void onLogoutSuccess() { CustomizedPopup.PopupButtonInfo[] btn_info = new CustomizedPopup.PopupButtonInfo[1]; btn_info[0].callback = () => { SceneManager.LoadSceneAsync("login"); }; PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "로그아웃", "로그아웃 되었습니다.\n로그인 화면으로 이동 합니다.", btn_info); }
public void onDeleteMemberFailure(NError error) { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "회원탈퇴", error.message); }
public void ClickCouponButton() { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_Coupon", "쿠폰", "쿠폰번호"); }
public void onLoginCancel() { PopupManager.ShowCustomPopup(popupRoot, "GamePotSamplePopup_BtnOne", "로그인", "로그인이 취소 되었습니다."); }