Example #1
0
 public void GetUserProfile(UserProfileCallback callback)
 {
     cloudHandler.GetUserProfile((UserProfileReply reply) =>
     {
         StartCoroutine(socialHandler.GetPictureFromIdCoroutine((Texture2D tex) =>
         {
             reply.picture = tex;
             callback(reply);
         }));
     });
 }