spine_skin_set_attachment method

void spine_skin_set_attachment(
  1. spine_skin skin,
  2. int slotIndex,
  3. Pointer<utf8> name,
  4. spine_attachment attachment,
)

Implementation

void spine_skin_set_attachment(
  spine_skin skin,
  int slotIndex,
  ffi.Pointer<utf8> name,
  spine_attachment attachment,
) {
  return _spine_skin_set_attachment(
    skin,
    slotIndex,
    name,
    attachment,
  );
}