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

@@ -3900,7 +3900,7 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 043ccd99cf82b3cc9bf2e00956ce2b93, type: 3}
m_Name:
m_EditorClassIdentifier:
model: {fileID: 5022602860645237092, guid: 2594d8a9acfef6c4b88ce2618c4169cb, type: 3}
model: {fileID: 5022602860645237092, guid: e6d85df707405ad4f97c23b07227ee99, type: 3}
modelInfoFile: {fileID: 4900000, guid: fb8b51022bdcd654a9f29c054832a1b5, type: 3}
configAsset: {fileID: 4900000, guid: 6288c43cdca97374782dac1ea87aa029, type: 3}
screen: {fileID: 1743003084}

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