Exemple #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();
    }
Exemple #2
0
 // Update is called once per frame
 public void Update()
 {
     sugc.DoYourThing();
 }
Exemple #3
0
 public override void GetAction()
 {
     sugc.DoYourThing();
 }