Нужен мой файл C # JSON.text, чтобы иметь HighScores по умолчанию, если он удаляется или меняются значения (UNITY) - PullRequest
0 голосов
/ 28 апреля 2018

Как добавить значения int и имени строки по умолчанию в файл JSON.txt через C #?

1 Ответ

0 голосов
/ 28 апреля 2018

Сначала я бы создал коллекцию HighScore по умолчанию со всеми этими фальшивыми игроками:

private List<Score> scores = null;
void Start()
{
    this.scores = new List<Score>()
    {
         new Score("Adam", 10000), new Score("Eve",7500); // ...
    };
    Score[]scores = GetJsonFileWithScore(); // This is where you get the real players score
    this.scores.AddRange(scores);
    this.scores.OrderBy (s => s.score); // Order it by score
    int index = 4;
    this.scores.RemoveRange(index, list.Count - index); // keep only the best 5
}
...