Ejemplo n.º 1
0
    public void CambiarCromosoma()  //cambiar
    {
        float tiempoTotal = tiempoPruebaOriginal - tiempoDePrueba;

        companionEvolutivo.setTiempoVida(tiempoTotal);
        companionEvolutivo.Evaluar();

        this.numeroIndividuo++;
        tiempoDePrueba = tiempoPruebaOriginal;
        numeroEspecie  = numeroIndividuo;
        SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
    }
Ejemplo n.º 2
0
 // Update is called once per frame
 void Update()
 {
     if (listo)
     {
         if (tiempoDePrueba > 0 && saludJugador.currentHealth > 0)
         {
             tiempoDePrueba -= Time.deltaTime;
         }
         else
         {
             float tiempoTotal = tiempoPruebaOriginal - tiempoDePrueba;
             companion.setTiempoVida(tiempoTotal);
             companion.Evaluar();
             //reiniciar = true;
             termine = true;
             listo   = false;
         }
     }
 }