using System.Collections; using System.Collections.Generic; using UnityEngine; public class Townsfolk : MonoBehaviour { public bool isTalking; //This is checked by conditions in the StateMachine public bool isIdle; //This is checked by conditions in the StateMachine void Start() { } void Update() { } }