본문 바로가기
반응형

개발/Playfab22

유니티 플레이팹 가상화폐 돈 증가 감소 간단 구현 Unity Playfab 기본 설정 public enum MoneyType { Gold, Crystal } public int gold = 0; public int crystal = 0; 돈 증가 public void UpdateAddCurrency(MoneyType moneyType, int number) { string currentType = ""; switch (moneyType) { case MoneyType.Gold: currentType = "GO"; gold += number; break; case MoneyType.Crystal: currentType = "CR"; crystal += number; break; } var request = new AddUserVirtualCurrencyRequest { Virtu.. 2024. 2. 11.
유니티 플레이팹 아이템 주기 Playfab Grant Item ToUser 간단 사용법 플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 Playfab Sign In with Guest Login 간단 사용법 코드 작성 using PlayFab; using PlayFab.ClientModels; using PlayFab.Json; using PlayFab.ProfilesModels; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using EntityKey = PlayFab.ProfilesMod parksh3641.tistory.com 코드 작성 using System; using System.Collections.G.. 2022. 7. 20.
유니티 플레이팹 아이템 구매 Playfab Shop Purchase Item 간단 사용법 플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 Playfab Sign In with Guest Login 간단 사용법 코드 작성 using PlayFab; using PlayFab.ClientModels; using PlayFab.Json; using PlayFab.ProfilesModels; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using EntityKey = PlayFab.ProfilesMod parksh3641.tistory.com 코드 작성 using System; using System.Collections.G.. 2022. 7. 20.
유니티 플레이팹 친구 추가, 삭제하기 Playfab Friends Add, Delete 간단 사용법 플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 Playfab Sign In with Guest Login 간단 사용법 코드 작성 using PlayFab; using PlayFab.ClientModels; using PlayFab.Json; using PlayFab.ProfilesModels; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using EntityKey = PlayFab.ProfilesMod parksh3641.tistory.com 코드 작성 using System; using System.Collections.G.. 2022. 7. 19.
유니티 플레이팹 Json으로 타이틀 데이터 저장, 불러오기 Playfab 플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 Playfab Sign In with Guest Login 간단 사용법 코드 작성 using PlayFab; using PlayFab.ClientModels; using PlayFab.Json; using PlayFab.ProfilesModels; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using EntityKey = PlayFab.ProfilesMod parksh3641.tistory.com 공통 private void DisplayPlayfabError(PlayFabErr.. 2022. 7. 19.
유니티 플레이팹 애플 로그인 Playfab Sign ln with Apple Login 간단 구현 유니티용 애플 SDK 설치 Release Sign in with Apple Unity Plugin v1.4.2 · lupidan/apple-signin-unity Changed Handles empty NSPersonNameComponents sent by Apple when not requesting a name, to be nil natively. Updated MacOSAppleAuthManager.bundle with the updated native code Removed Removes FixSe... github.com 코드 작성 using System.Collections; using System.Text; using PlayFab; using PlayFab.ClientModels; #if .. 2022. 7. 19.
유니티 플레이팹 페이스북 로그인 Playfab Sign ln with Facebook Login 간단 구현 페이스북 유니티 SDK 설치 Unity SDK - 문서 - Facebook for Developers The Unity engine and ecosystem gives developers a world class technology platform from which they can build games that work seamlessly across multiple platforms quickly and effectively. The Facebook SDK for Unity complements Unity Technologies' cross-platf developers.facebook.com 코드 작성 using Facebook.Unity; using PlayFab; using PlayFab.Cli.. 2022. 7. 19.
유니티 플레이팹 클라우드 스크립트 사용 Playfab CloudScripts 간단 사용법 클라우드 스크립트 사용하는 이유? 클라이언트에서 코드를 처리하는 방식이 아닌 서버에서 처리하기때문에 로그를 남길 수도 있고 더 빠르고 안전하게 코드를 처리할 수 있습니다. 코드 작성 (기본값 세팅) using PlayFab; using PlayFab.ClientModels; using PlayFab.Json; using PlayFab.ProfilesModels; using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayfabManager : MonoBehaviour { private void SetEditorOnlyMessage(string message, bool .. 2022. 7. 12.
유니티 플레이팹 타이틀 뉴스 가져오기 Playfab ReadTitleNews 간단 사용법 플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 Playfab Sign In with Guest Login 간단 사용법 코드 작성 using PlayFab; using PlayFab.ClientModels; using PlayFab.Json; using PlayFab.ProfilesModels; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using EntityKey = PlayFab.ProfilesMod parksh3641.tistory.com 코드 작성 using PlayFab; using PlayFab.ClientModel.. 2022. 7. 12.
유니티 플레이팹 서버 시간 가져오기 Playfab GetServerTime 간단 사용법 플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 Playfab Sign In with Guest Login 간단 사용법 코드 작성 using PlayFab; using PlayFab.ClientModels; using PlayFab.Json; using PlayFab.ProfilesModels; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using EntityKey = PlayFab.ProfilesMod parksh3641.tistory.com 코드 작성 using PlayFab; using PlayFab.ClientModel.. 2022. 7. 12.
유니티 플레이팹 타이틀 데이터 불러오기 Playfab GetTitleInternal 간단 사용법 플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 Playfab Sign In with Guest Login 간단 사용법 코드 작성 using PlayFab; using PlayFab.ClientModels; using PlayFab.Json; using PlayFab.ProfilesModels; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using EntityKey = PlayFab.ProfilesMod parksh3641.tistory.com 코드 작성 using PlayFab; using PlayFab.ClientModel.. 2022. 7. 12.
유니티 플레이팹 리더보드 랭킹 불러오기 Playfab LeaderBoard 간단사용법 플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 Playfab Sign In with Guest Login 간단 사용법 코드 작성 using PlayFab; using PlayFab.ClientModels; using PlayFab.Json; using PlayFab.ProfilesModels; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; using EntityKey = PlayFab.ProfilesMod parksh3641.tistory.com 코드 작성 using PlayFab; using PlayFab.ClientModel.. 2022. 7. 8.
반응형