Can I add an animator here through code?
this is what I have now and its not working
foreach (TrackAsset track in timelineAsset.GetOutputTracks())
{
UnityEngine.Object bindingObject = director.GetGenericBinding(track);
if (bindingObject is Animator animator)
{
Debug.Log(“Binding Object is animator”);
animator = charAnimator;
}
}