getMixingTo method

TrackEntry? getMixingTo()

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

Implementation

TrackEntry? getMixingTo() {
  final to = _bindings.spine_track_entry_get_mixing_to(_entry);
  if (to.address == nullptr.address) return null;
  return TrackEntry._(to, _state);
}