mixAttachmentThreshold property

double get mixAttachmentThreshold

When the mix percentage (mix time / mix duration) is less than the attachment threshold, attachment timelines for the animation being mixed out will be applied. Defaults to 0, so attachment timelines are not applied for an animation being mixed out.

Implementation

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

Implementation

set mixAttachmentThreshold(double value) {
  SpineBindings.bindings.spine_track_entry_set_mix_attachment_threshold(_ptr, value);
}