removeAttachment method

void removeAttachment(
  1. int slotIndex,
  2. String name
)

Removes the attachment from the skin.

Implementation

void removeAttachment(int slotIndex, String name) {
  SpineBindings.bindings.spine_skin_remove_attachment(_ptr, slotIndex, name.toNativeUtf8().cast<Char>());
}