mixTime property

double get mixTime

Seconds from 0 to the mix duration when mixing from the previous animation to this animation. May be slightly more than TrackEntry.MixDuration when the mix is complete.

Implementation

double get mixTime {
  final result = SpineBindings.bindings.spine_track_entry_get_mix_time(_ptr);
  return result;
}
set mixTime (double value)

Implementation

set mixTime(double value) {
  SpineBindings.bindings.spine_track_entry_set_mix_time(_ptr, value);
}