mixingFrom property
TrackEntry?
get
mixingFrom
The track entry for the previous animation when mixing from the previous animation to this animation, or NULL if no mixing is currently occuring. When mixing from multiple animations, MixingFrom makes up a double linked list with MixingTo.
Implementation
TrackEntry? get mixingFrom {
final result = SpineBindings.bindings.spine_track_entry_get_mixing_from(_ptr);
return result.address == 0 ? null : TrackEntry.fromPointer(result);
}