Implement demo day changes - DO NOT MERGE

This commit is contained in:
Dries Van Schuylenbergh
2023-04-17 22:15:26 +02:00
parent 5b4a3ec4e7
commit 2ba62e316f
31 changed files with 1140 additions and 1398 deletions

View File

@@ -384,8 +384,9 @@ public class HangmanController : AbstractFeedback
// Then get a random index for a word to pull
// First get random index for the themes
int amountThemes = themeList.themes.Count;
int themeIndex = Random.Range(0, amountThemes);
//int amountThemes = themeList.themes.Count;
//int themeIndex = Random.Range(0, amountThemes);
int themeIndex = 0; // Geography theme
// Check how many words are in this theme
int amountWords = themeList.themes[themeIndex].learnables.Count;