UNPKG

@pixi-spine/runtime-3.7

Version:

Pixi runtime for spine 3.7 models

16 lines (13 loc) 420 B
import { VertexAttachment } from './Attachment.mjs'; import { AttachmentType, Color } from '@pixi-spine/base'; class ClippingAttachment extends VertexAttachment { // ce3a3aff constructor(name) { super(name); this.type = AttachmentType.Clipping; // Nonessential. this.color = new Color(0.2275, 0.2275, 0.8078, 1); } } export { ClippingAttachment }; //# sourceMappingURL=ClippingAttachment.mjs.map