Esempio n. 1
0
    protected override void Start()
    {
        base.Start();

        GameObject obj = GameObject.FindGameObjectWithTag("ExperimentoOxidacion");

        gc = obj.GetComponent <ExperimentoOxidacion>();
    }
Esempio n. 2
0
    protected override void Start()
    {
        base.Start();

        GameObject obj = GameObject.FindGameObjectWithTag("ExperimentoOxidacion");

        _experimento = obj.GetComponent <ExperimentoOxidacion>();

        NombreReactivo = "Ácido Clorhidrico";
    }
Esempio n. 3
0
    void Awake()
    {
        GameObject obj = GameObject.FindGameObjectWithTag("ExperimentoOxidacion");

        experimento = obj.GetComponent <ExperimentoOxidacion>();
    }
    void Start()
    {
        GameObject obj = GameObject.FindGameObjectWithTag("ExperimentoOxidacion");

        gc = obj.GetComponent <ExperimentoOxidacion>();
    }