コード例 #1
0
    public static void AtivarFormulario()
    {
        List <string> tipoEquipamentos = new List <string>();
        var           objetos          = ObjetosModel.GetAllObjetos();

        if (objetos != null)
        {
            objetos.ForEach(x =>
            {
                tipoEquipamentos.Add(x.Nome);
            });
        }

        if (GameObject.Find("inpTipo").GetComponent <Dropdown>().options.Count < tipoEquipamentos.Count)
        {
            GameObject.Find("inpTipo").GetComponent <Dropdown>().AddOptions(tipoEquipamentos);
        }

        var sdadas     = Marcador.Marcadores.Count;
        var asdjasndja = GameObject.Find("inpMarcador").GetComponent <Dropdown>();

        if (GameObject.Find("inpMarcador").GetComponent <Dropdown>().options.Count < sdadas)
        {
            GameObject.Find("inpMarcador").GetComponent <Dropdown>().AddOptions(Marcador.Marcadores);
        }
    }
コード例 #2
0
    public void Read()
    {
        for (int i = 0; i < ItemParent.transform.childCount; i++)
        {
            Destroy(ItemParent.transform.GetChild(i).gameObject);
        }

        List <Objeto> objetos = ObjetosModel.GetAllObjetos();

        objetos.ForEach(x => {
            GameObject tmpItem = Instantiate(Item, ItemParent.transform);

            tmpItem.name = x._id;
            tmpItem.transform.GetChild(0).GetComponent <Text>().text = x.Descricao;
            tmpItem.transform.GetChild(1).GetComponent <Text>().text = x.AR? "Sim": "Não";
        });
    }