
이전 강의에선, API 공식문서를 읽는 방법에 대해 알아보았고, 실제로 문서를 보고 API를 적용하여 계정생성을 하는 법 까지 알아보았다. 이어서 로그인 및 계정 생성을 완성해보고자 한다. using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class LoginWindowView : MonoBehaviour { public InputField Username; public InputField Password; public InputField ConfirmPassword; public Button PlayAsGuestButton; public Button Regist..