using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayBoolAnimation : Action { [SerializeField] private string name; public override void Act(FiniteStateMachine fsm) { //fsm.animator.SetBool(name, true); } }