반응형
반응형
애플 SDK 설치 Release Sign in with Apple Unity Plugin v1.4.2 · lupidan/apple-signin-unityChanged 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;#if UNITY_IOSusing AppleAuth;using AppleAuth.Native;using..
플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 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..
플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 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..
플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 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..
플레이팹 로그인이 되었다는 가정하에 진행 유니티 플레이팹 게스트 로그인 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..
유니티용 애플 SDK 설치 Release Sign in with Apple Unity Plugin v1.4.2 · lupidan/apple-signin-unityChanged 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 Pl..
페이스북 유니티 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..
유니티 C# 비속어 필터 적용 inputfield 간단 사용법 Assets / Resoures / BadWord.txt 준비 코드 작성 using System.Collections; using System.Collections.Generic; using System.IO; using System.Text.RegularExpressions; using UnityEngine; using UnityEngine.UI; public class Example : MonoBehaviour { public InputField inputField; public string[] lines; string LINE_SPLIT_RE = @"\r\n|\n\r|\n|\r"; void Awake() { if (File.Exists(..
코드 작성 using UnityEngine; public class Example : MonoBehaviour { void Awake() { Debug.Log("회색 디버그 로그"); Debug.LogWarning("노란색 디버그 로그"); Debug.LogError("빨간색 디버그 로그"); } } 참고할만한 글 유니티 C# 비속어 필터 적용 inputfield 간단 사용법 Assets / Resoures / BadWord.txt 준비 코드 작성 using System.Collections; using System.Collections.Generic; using System.IO; using System.Text.RegularExpressions; using UnityEngine; using Unity..
산술 연산자 using UnityEngine; public class Example : MonoBehaviour { public int a = 10; public int b = 5; void Awake() { //더하기 연산자 Debug.Log(a + b); // 15 //빼기 연산자 Debug.Log(a - b); // -5 //곱하기 연산자 Debug.Log(a * b); // 50 //나누기 연산자 Debug.Log(a / b); // 2 //나머지 연산자 b = 3; Debug.Log(a % b); // 1 //할당 연산자 a++; // a = 11 a--; // a = 10 } } 할당 연산자 using UnityEngine; public class Example : MonoBehaviour {..
코드 작성 using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; using UnityEngine.Networking; public class Example : MonoBehaviour { const string DownloadURL = "https://docs.google.com/spreadsheets/d/" + "주소 Id 값" + "/export?format=tsv&gid=0"; void Awake() { StartCoroutine(DownloadFile()); } IEnumerator DownloadFile() { Debug.Log("File Downloading..."); Unit..
유니티 허브 설치 https://unity3d.com/kr/get-unity/download Download Unity! Unity is the ultimate game development platform. Use Unity to build high-quality 3D and 2D games, deploy them across mobile, desktop, VR/AR, consoles or the Web, and connect with loyal and enthusiastic players and customers. unity3d.com 유니티 원하는 버전 설치 (LTS 추천) https://unity3d.com/kr/get-unity/download/archive Get Unity - Download..