getMixingFrom method

TrackEntry? getMixingFrom()

The track entry for the previous animation when mixing from the previous animation to this animation, or null if no mixing is currently occurring. When mixing from multiple animations, mixingFrom makes up a linked list.

Implementation

TrackEntry? getMixingFrom() {
  final from = _bindings.spine_track_entry_get_mixing_from(_entry);
  if (from.address == nullptr.address) return null;
  return TrackEntry._(from, _state);
}