2022-10-10 01:38:22 +02:00
|
|
|
import { Design } from '@freesewing/core'
|
|
|
|
import { gorePlugin } from '@freesewing/plugin-gore'
|
|
|
|
import { data } from '../data.mjs'
|
2023-07-02 13:30:41 +02:00
|
|
|
import { i18n } from '../i18n/index.mjs'
|
2022-10-10 01:38:22 +02:00
|
|
|
|
|
|
|
// Stacks
|
|
|
|
import {
|
|
|
|
stacks_top,
|
|
|
|
stacks_left,
|
|
|
|
stacks_right,
|
|
|
|
stacks_bottom,
|
|
|
|
stacks_leftEye,
|
|
|
|
stacks_rightEye,
|
|
|
|
stacks_mouth,
|
|
|
|
} from './stacks.mjs'
|
|
|
|
|
|
|
|
// Settings
|
|
|
|
import { settings_sa } from './settings.mjs'
|
|
|
|
|
|
|
|
// Setup our new design
|
|
|
|
const Examples = new Design({
|
|
|
|
data,
|
|
|
|
parts: [
|
|
|
|
// Stacks
|
|
|
|
stacks_top,
|
|
|
|
stacks_left,
|
|
|
|
stacks_right,
|
|
|
|
stacks_bottom,
|
|
|
|
stacks_leftEye,
|
|
|
|
stacks_rightEye,
|
|
|
|
stacks_mouth,
|
|
|
|
|
|
|
|
// Settings
|
|
|
|
settings_sa,
|
|
|
|
],
|
2023-09-07 13:08:15 +02:00
|
|
|
plugins: [gorePlugin],
|
2022-10-10 01:38:22 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
// Named exports
|
|
|
|
export {
|
|
|
|
// Stacks
|
|
|
|
stacks_top,
|
|
|
|
stacks_left,
|
|
|
|
stacks_right,
|
|
|
|
stacks_bottom,
|
|
|
|
stacks_leftEye,
|
|
|
|
stacks_rightEye,
|
|
|
|
stacks_mouth,
|
|
|
|
|
2022-10-12 15:00:08 +02:00
|
|
|
// Settings
|
|
|
|
settings_sa,
|
2022-10-10 01:38:22 +02:00
|
|
|
Examples,
|
2023-07-02 13:30:41 +02:00
|
|
|
|
|
|
|
// Translation
|
|
|
|
i18n,
|
2022-10-10 01:38:22 +02:00
|
|
|
}
|