If there are always 2 answers to your questions, you can do this:
public class History : MonoBehaviour {
public GameObject[] answers;
int[] questions;
void Start () {
int newLength = answers.Length/2;
questions = new int [newLength];
for (int i = 0; i < newLength; i++) {
questions [i] = PlayerPrefs.GetInt ("Question" + i.ToString());
if (questions [i] == 1 || questions [i] == 2) {
if (questions [i] == 1) {
answers [i].SetActive (true);
answers [i + 1].SetActive (false);
} else {
answers [i].SetActive (false);
answers [i + 1].SetActive (true);
}
}
}
}
}
Could potentially be optimized further with a mod(ulo).
↧