void Start()
{
string[] select = { "Level", "score", "playTime" };
Where where = new Where();
var bro = Backend.GameData.Get("custom",new Where(),select);
if (bro.IsSuccess() == false)
{
return;
}
bro.FlattenRows();
print(bro);
ScoreBoard.text = bro.ToString();
}
이 코드를 실행시키면
statusCode : 200
message : Success
returnValue : {“serverTime”:“2021-12-19T02:05:09.625Z”,“rows”:[{“Level”:{“N”:“1”},“score”:{“N”:“105”},“playTime”:{“N”:“7.570641”}
이렇게 나오는데 그냥 딱 Level :00 score : 000 이렇게 나오는 방법 없나요
답변좀 제발 부탁드립니다