Added model from A - Z

This commit is contained in:
Victor Mylle
2023-03-23 11:10:55 +00:00
committed by Louis Adriaens
parent f9298a055a
commit 6ef35cabd4
27 changed files with 188 additions and 40 deletions

View File

@@ -227,6 +227,7 @@ public partial class GameController : MonoBehaviour
int seconds = Mathf.FloorToInt(timerValue % 60.0f);
timerText.text = string.Format("{0:00}:{1:00}", minutes, seconds);
}
}
@@ -402,9 +403,9 @@ public partial class GameController : MonoBehaviour
if (wordIndex < words.Count)
{
currentWord = words[wordIndex].name;
DisplayWord(currentWord);
letterIndex = 0;
DisplayWord(currentWord);
wordIndex++;
}
else