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