예제 #1
0
    protected override void Start()
    {
        base.Start();

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

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

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

        _experimento = obj.GetComponent <ExperimentoOxidacion>();

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

        experimento = obj.GetComponent <ExperimentoOxidacion>();
    }
예제 #4
0
    void Start()
    {
        GameObject obj = GameObject.FindGameObjectWithTag("ExperimentoOxidacion");

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