// Update is called once per frame void Update() { if (texto.text != "") { datos = target.GetComponent <BuscadorPreguntas>(); if (datos.answers[numero] != "") { texto.text = datos.answers[numero]; } } }
// Update is called once per frame void Update() { if (texto.text != "") { datos = target.GetComponent <BuscadorPreguntas>(); if (datos.pregunta != "") { texto.text = datos.pregunta; } } }
// Start is called before the first frame update void Start() { target = GameObject.FindWithTag("Buscador Preguntas"); datos = target.GetComponent <BuscadorPreguntas>(); texto = GetComponent <Text>(); }