Example #1
0
        private void Awake()
        {
            _rb         = GetComponent <Rigidbody>();
            _adventurer = GetComponent <AdventurerState>();

            _circle = TransformExtension.GetChildObject(this.gameObject, _circleName);
        }
Example #2
0
 private void Awake()
 {
     _rb    = GetComponent <Rigidbody>();
     _state = GetComponent <AdventurerState>();
 }
Example #3
0
 private void Awake()
 {
     _state = GetComponent <AdventurerState>();
 }
Example #4
0
 private void Awake()
 {
     _anim  = GetComponent <Animator>();
     _state = GetComponent <AdventurerState>();
 }