Question board
This commit is contained in:
@@ -38,8 +38,8 @@ public class QuizController : MonoBehaviour {
|
||||
private List<int> selectedAnswers;
|
||||
|
||||
List<Question> questions = new List<Question>() {
|
||||
new Question("Q1", new int[] {1, 3}),
|
||||
new Question("Q2", new int[] {2}),
|
||||
new Question("1. Neki od ovih prozora imaju 2-3 puta manje toplotnih gubitaka za razliku od drugih, koji su to?", new int[] {1, 3}),
|
||||
new Question("2. Na jedan od načina možete uštedjeti i do 10 litara vode po osobi dnevno, uz koji predmet?", new int[] {2}),
|
||||
};
|
||||
|
||||
// Use this for initialization
|
||||
@@ -93,12 +93,12 @@ public class QuizController : MonoBehaviour {
|
||||
|
||||
private void UpdateScore()
|
||||
{
|
||||
scoreText.text = "Score: " + scoreValue.ToString();
|
||||
scoreText.text = scoreValue.ToString();
|
||||
}
|
||||
|
||||
private void UpdateCounter()
|
||||
{
|
||||
counterText.text = "Counter: " + counterValue.ToString("f0");
|
||||
counterText.text = counterValue.ToString("f0");
|
||||
}
|
||||
|
||||
private void UpdateScene()
|
||||
|
||||
Reference in New Issue
Block a user