using System.Collections; using System.Collections.Generic; using UnityEngine; public class CharacterAnimatorParent : MonoBehaviour { CharacterAnimatorController animatorController; public CastingStateController castingStateController; private void Awake() { animatorController = GetComponentInChildren(); castingStateController = GetComponentInChildren(); } }