Пример #1
0
 void ChangeGestureEyes(CharacterBrain.EyeGestures eg)
 {
     currentEyeGesture = eg;
     if (PlayerBrain != null)
     {
         PlayerBrain.SetEyeGesture(eg);
     }
 }
Пример #2
0
 void SwitchToIdle()
 {
     PlayerBrain.SetEyeGesture(CharacterBrain.EyeGestures.idle);
 }
Пример #3
0
        void SwitchToTalking()
        {
            animator.SetBool("talking", true);

            PlayerBrain.SetEyeGesture(CharacterBrain.EyeGestures.talk);
        }