UnitMovement.Awake C# (CSharp) Method

Awake() public method

public Awake ( ) : void
return void
    void Awake()
    {
        seeker = GetComponent<Seeker>();
        characterController = GetComponent<CharacterController>();
        attack = GetComponent<AttackController> ();
        animator = GetComponent<Animator>();
        hasTarget = false;
        status = Status.idle;
        callback = null;
    }