AttachmentTimeline constructor

AttachmentTimeline(
  1. int frameCount,
  2. int slotIndex
)

Implementation

factory AttachmentTimeline(int frameCount, int slotIndex) {
  final ptr = SpineBindings.bindings.spine_attachment_timeline_create(frameCount, slotIndex);
  return AttachmentTimeline.fromPointer(ptr);
}