diff --git a/Assets/Scripts/HighScores.cs b/Assets/Scripts/HighScores.cs index 4b42b70..dba67d0 100644 --- a/Assets/Scripts/HighScores.cs +++ b/Assets/Scripts/HighScores.cs @@ -41,7 +41,12 @@ public class HighScores : MonoBehaviour { if (score.team != null && score.team.Length > 0) { name += " (" + score.team + ")"; } - ScoreText.text += positionText + " " + WWW.UnEscapeURL(name) + ": " + score.score + " points\n"; + string entryText = positionText + " " + WWW.UnEscapeURL (name) + ": " + score.score + " points\n"; + if (position <= 3) + entryText = "" + entryText + ""; + else if (position == 4) + entryText = "\n" + entryText; + ScoreText.text += entryText; } } else { ScoreText.text = "No high-score yet... Play a game and show you are the best!";