[ Parse Hosting ] 정리 계획 https://parse.com/docs/unity_guide#unity_guide여기에 있는 문서중User 기능을 정리하는 식으로 작성하자 User 링크https://parse.com/docs/unity_guide#users 더보기 [ Parse Hosting ] 유저 생성하기 원문 https://parse.com/apps/quickstart#social/unity/existing코드 Add a User to Your AppThe idea of user accounts that let people access their information and share it with others in a secure manner is at the core of any social app. Whether your app creates its own sharing environment or integrates with existing social networks, you will need to add functionality to let people manage their accounts i.. 더보기 [ parse hosting ] 유저 데이터 저장 하기 원문https://parse.com/apps/quickstart#social/unity/existing 코드Create a new GameObject in your game and attach a new C# script component to it. THen add the following directive:using Parse;Copy and paste this code in your script, for example, in the Start method:ParseObject testObject = new ParseObject("TestObject");testObject["foo"] = "bar";testObject.SaveAsync();Run your app. A new object 결과testO.. 더보기 이전 1 2 3 4 ··· 8 다음