@pixi-spine/runtime-3.7
Version:
Pixi runtime for spine 3.7 models
14 lines (11 loc) • 382 B
JavaScript
import { VertexAttachment } from './Attachment.mjs';
import { AttachmentType, Color } from '@pixi-spine/base';
class BoundingBoxAttachment extends VertexAttachment {
constructor(name) {
super(name);
this.type = AttachmentType.BoundingBox;
this.color = new Color(1, 1, 1, 1);
}
}
export { BoundingBoxAttachment };
//# sourceMappingURL=BoundingBoxAttachment.mjs.map