getMix method

double getMix(
  1. Animation from,
  2. Animation to
)

Implementation

double getMix(Animation from, Animation to) {
  final String key = from.name + '.' + to.name;
  return animationToMixTime[key] ?? defaultMix;
}