copy method

void copy(
  1. Skin other
)

Adds all bones and constraints and copies of all attachments from the specified skin to this skin. Mesh attachments are not copied, instead a new linked mesh is created. The attachment copies can be modified without affecting the originals.

Implementation

void copy(Skin other) {
  _bindings.spine_skin_copy_skin(_skin, other._skin);
}