Exemplo n.º 1
0
    public override bool execute()
    {
        GameObject aObj = this.bb.GetGameObject("Agent");

        // If no marked target, fail
        if (aObj == null)
        {
            return(false);
        }
        Boid agent = aObj.GetComponent <Boid>();

        float firecd = bb.GetFloat("FireCooldown");

        if (firecd <= 0.0f)
        {
            agent.FireBullet();
            bb.PutFloat("FireCooldown", 1.0f);
            return(true);
        }

        bb.PutFloat("FireCooldown", firecd - Time.deltaTime);
        return(false);
    }