728x90
반응형

Playfab 4

[Unity] Playfab Function 정리 -2

랜덤 박스 실행 public bool RandomBoxGrant(string catalogversion, string tableId) //랜덤박스 { // First, roll a random number and evaluate the drop table PlayFabServerAPI.EvaluateRandomResultTable(new PlayFab.ServerModels.EvaluateRandomResultTableRequest() { CatalogVersion = catalogversion, TableId = tableId }, result => { Debug.Log("Success"); }, fail => { Debug.Log("Fail"); }); } 유저 타이틀 데이터 저장/가져오기 publi..

Unity 2020.08.18

[Unity] Playfab Function 정리 -1

커스텀 로그인 public void OnClickGuestLogin() { PlayFabClientAPI.LoginWithCustomID(new LoginWithCustomIDRequest() { //디바이스 아이디로 커스텀 로그인 CustomId = SystemInfo.deviceUniqueIdentifier, // 기존 계정이 없다면 생성 CreateAccount = true }, result => { Debug.Log("Success"); }, (error) => { Debug.Log("Fail"); }); } 인벤토리 업데이트 public void SetInventoryCustomData(string itemInstanceID, Dictionary datas) { PlayFab.ServerMode..

Unity 2020.08.18

[Unity] Playfab Notification Setting Error

왼쪽 사진과 같이 푸시 알림을 설정 완료했고 서버키도 틀림이 없지만 푸시를 뿌려보거나 플레이어를 들어가보면 설정이 안되어 있다고만 하는 답답한 상황이 발생한다 사실 이건 튜토리얼을 저처럼 날림으로 보다가 중요한 부분을 놓친 경우 https://docs.microsoft.com/en-us/gaming/playfab/features/engagement/push-notifications/push-notifications-for-android Push Notification for Android - PlayFab Describes how to setup and configure PlayFab Push Notifications for Android. docs.microsoft.com 를 보면 세팅법이 잘 나오는데..

Unity 2020.02.06
728x90
반응형