spine_skin_remove_attachment method

void spine_skin_remove_attachment(
  1. spine_skin self,
  2. int slotIndex,
  3. Pointer<Char> name
)

Removes the attachment from the skin.

Implementation

void spine_skin_remove_attachment(
  spine_skin self,
  int slotIndex,
  ffi.Pointer<ffi.Char> name,
) {
  return _spine_skin_remove_attachment(
    self,
    slotIndex,
    name,
  );
}