Esempio n. 1
0
    public override void GetAction()
    {
        Agent aux = new Agent();

        foreach (Agent a in agentes)
        {
            if (a.cargado)
            {
                aux = a;
                break;
            }
        }

        sugc = new seekUsingGraphComp(agente, aux, maxA);
        sugc.DoYourThing();
    }
Esempio n. 2
0
 // Update is called once per frame
 public void Update()
 {
     sugc.DoYourThing();
 }
Esempio n. 3
0
 public override void GetAction()
 {
     sugc.DoYourThing();
 }