EnemyBase.AgentReachedDestination C# (CSharp) 메소드

AgentReachedDestination() 보호된 메소드

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