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
Post a Comment