Hello!
I’ve made this code and I dont know how to display the text in a UI button or text box. Does anyone have any ideas on how to go about displaying elements of my list? Here’s my code:
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using System.Collections.Generic;
public class Question_String_Script : MonoBehaviour {
public GameObject displayQuestion;
public GameObject displayAnswer1;
public GameObject displayAnswer2;
public GameObject displayAnswer3;
public GameObject displayAnswer4;
public bool next = false;
Text dQ;
Text dA1;
Text dA2;
Text dA3;
Text dA4;
List<string> Question = new List<string>();
List<string> Answers1 = new List<string>();
List<string> Answers2 = new List<string>();
List<string> Answers3 = new List<string>();
List<string> Answers4 = new List<string>();
List<int> isCorrect = new List<int>();
void Update(){
if(next){
next = false;
int ranNumber = Random.Range(0, Question.Count - 1);
dQ.text = Question[ranNumber];
dA1.text = Answers1[ranNumber];
dA2.text = Answers2[ranNumber];
dA3.text = Answers3[ranNumber];
dA4.text = Answers4[ranNumber];
}
}
void Start(){
dA2 = displayAnswer2.GetComponent<Text>();
dA3 = displayAnswer3.GetComponent<Text>();
dQ = displayQuestion.GetComponent<Text>();
dA1 = displayAnswer1.GetComponent<Text>();
dA4 = displayAnswer4.GetComponent<Text>();
}
void Awake(){
//QUESTIONS
Question.Add("Are the developers of this game freaking amazing?");
Question.Add("What is Bucket * bucket?");
Question.Add("");
Question.Add("");
Question.Add("");
//Answer1
Answers1.Add("Yes.");
Answers1.Add("bucketBucket");
Answers1.Add("");
Answers1.Add("");
Answers1.Add("");
//ANSWERS2
Answers2.Add("YES HELL YES FUCK YES THEY'RE AMAZING");
Answers2.Add("Bucket");
Answers2.Add("");
Answers2.Add("");
Answers2.Add("");
//Answers3
Answers3.Add("Yea, sure.");
Answers3.Add("bucketbucket");
Answers3.Add("");
Answers3.Add("");
Answers3.Add("");
//Answers4
Answers4.Add("Duh");
Answers4.Add("bucket");
Answers4.Add("");
Answers4.Add("");
Answers4.Add("");
//isCorrect
isCorrect.Add(2);
}
}