我在尝试更新 Parse 云中的用户数据时遇到异步任务问题。我正在为我的项目使用 UnityScript 并使用此函数来更新我的对象。请帮助我在 UnityScript 中正确编写此内容。我收到此错误
错误:意外的令牌:t
期待),找到'{'
';' 预期的
在期望 EOF 的末尾插入分号,找到 ')'
gameScore.SaveAsync().ContinueWith(t =>
{
// Now let's update it with some new data. In this case, only cheatMode
// and score will get sent to the cloud. playerName hasn't changed.
gameScore["cheatMode"] = true;
gameScore["score"] = 1338;
gameScore.SaveAsync();
});