Finished changing score to amount of photos

This commit is contained in:
2025-11-18 12:45:36 +01:00
parent 219f2239a1
commit 2c4e90b698
5 changed files with 159 additions and 154 deletions

View File

@@ -39,8 +39,8 @@ namespace UI
// Update score when showing the screen
if (DivingGameManager.Instance != null)
{
int finalScore = DivingGameManager.Instance.PlayerScore;
finalScoreText.text = $"{finalScore}";
int finalScore = DivingGameManager.Instance.picturesTaken;
finalScoreText.text = $"x {finalScore}";
}
if (canvasGroup != null)