Quantcast
Channel: Answers by "Pharaoh_"
Viewing all articles
Browse latest Browse all 54

Answer by Pharaoh_

$
0
0
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).

Viewing all articles
Browse latest Browse all 54

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>