Ejemplo n.º 1
0
    public void react_to_hit()
    {
        // If the object is not null, then kill it.
        WanderingAI behaviour = GetComponent <WanderingAI>();

        if (behaviour != null)
        {
            behaviour.setLife(false);
        }

        StartCoroutine(Die());
    }