EnemyBase.AgentReachedDestination C# (CSharp) Method

AgentReachedDestination() protected method

Is called when the Agnet reaches the destination.
protected AgentReachedDestination ( ) : void
return void
    protected override void AgentReachedDestination()
    {
        if (this.movingBackwards > 0)
        {
            return;
        }
        StartCoroutine(this.DestroyThis());
    }