parse.com - Unity 5 ParseObject.GetQuery wont work -


i've problem loading scores parse. there 3 users scores in database , i'm trying hook them:

var query = parseobject.getquery("gamescores").orderbydescending("scrore");//.orderby("nickname").thenbydescending("score").limit(25);     query.findasync().continuewith(t =>     {         results = t.result;         debug.log(results);         foreach (parseobject obj in results)         {             var score = obj.get<string>("score");             debug.log(score);         }     }); 

first debug returns

system.collections.objectmodel.readonlycollection`1[parse.parseobject]

the second not execute @ all, wrong?


Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -