using UnityEngine; using System.Collections; // Require these components when using this script [RequireComponent(typeof (Animator))] [RequireComponent(typeof (CapsuleCollider))] [RequireComponent(typeof (Rigidbody))] public class BotControlScript : MonoBehaviour { public float animSpeed = 1.5f;// a public setting for overall animator animation speed public float lookSmoother = 3f;// a smoothing..