본문 바로가기

Unity/Parse Hosting

[ 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 

결과

testObject 라는 DB 가 생성되고

이 DB 에 string 타입의 값이 "bar"foo 칼럼이 추가된다.



'Unity > Parse Hosting' 카테고리의 다른 글

[ Parse Hosting ] 정리 계획  (0) 2014.04.12
[ Parse Hosting ] 유저 생성하기  (0) 2014.04.12