skully
This design is part of the FreeSewing collection
Named exports
Skully: The design constructorabout: Metadata about the designcheek: The cheek part of the designcheekbone: The cheekbone part of the designeye: The eye part of the designforehead: The forehead part of the designhead1: The head1 part of the designhead2: The head2 part of the designhead3: The head3 part of the designi18n: Internationalisation (i18n/translation) data for the designjawfloor: The jawfloor part of the designlowerjaw: The lowerjaw part of the designlowermouth: The lowermouth part of the designnose: The nose part of the designuppermouth: The uppermouth part of the design
Constructor
To create a new skully Design, import the constructur as such:
import { Skully } from '@freesewing/skully'
Then you can instantiate it by passing a settings object:
const pattern = new Skully(settings)
Design config
You can access the design configuration without instantiating a design.
It is available as the designConfig property of the design constructor:
import { Skully } from '@freesewing/skully'
// Access the design config from the constructor
const dConf = Skully.designConfig
Pattern config
You can access the pattern configuration without instantiating a design.
It is available as the patternConfig property of the design constructor:
import { Skully } from '@freesewing/skully'
// Access the pattern config from the constructor
const pConf = Skully.patternConfig
Metadata
You can access the design's metadata through the about named export:
import { about } from '@freesewing/skully'
I18n
You can access the design's internationalization data through the i18n named export:
import { i18n } from '@freesewing/skully'
Parts
cheek
The part itself
You can access this part as the cheek named export:
import { cheek } from '@freesewing/skully'
cheekbone
The part itself
You can access this part as the cheekbone named export:
import { cheekbone } from '@freesewing/skully'
eye
The part itself
You can access this part as the eye named export:
import { eye } from '@freesewing/skully'
forehead
The part itself
You can access this part as the forehead named export:
import { forehead } from '@freesewing/skully'
head1
The part itself
You can access this part as the head1 named export:
import { head1 } from '@freesewing/skully'
head2
The part itself
You can access this part as the head2 named export:
import { head2 } from '@freesewing/skully'
head3
The part itself
You can access this part as the head3 named export:
import { head3 } from '@freesewing/skully'
jawfloor
The part itself
You can access this part as the jawfloor named export:
import { jawfloor } from '@freesewing/skully'
lowerjaw
The part itself
You can access this part as the lowerjaw named export:
import { lowerjaw } from '@freesewing/skully'
lowermouth
The part itself
You can access this part as the lowermouth named export:
import { lowermouth } from '@freesewing/skully'
nose
The part itself
You can access this part as the nose named export:
import { nose } from '@freesewing/skully'
uppermouth
The part itself
You can access this part as the uppermouth named export:
import { uppermouth } from '@freesewing/skully'