1
0
Fork 0

chore(markdown): Updated settings docs

This commit is contained in:
Joost De Cock 2021-12-28 21:07:45 +01:00
parent 6ccdef7258
commit 45ebd9e142
13 changed files with 119 additions and 51 deletions

View file

@ -2,15 +2,20 @@
title: complete
---
Set this to `false` to draft a base outline of the pattern, rather than a fully detailed pattern.
The `complete` setting controls the level of details that's included on your pattern.
This has different uses, such as generating patterns to be cut out with a laser cutter.
The default is `true`. Setting this to `false` will force [sa](#sa) to be set to `false`.
The default `complete` setting is `true`.
Set this to `false` to draft a base outline of the pattern, rather than a fully detailed pattern.
<Note>
Setting this to `false` will force [sa](/reference/api/settings/sa) to be set to `false`.
</Note>
```js
import brian from "@freesewing/brian";
import Brian from "@freesewing/brian";
let pattern = new brian({
const pattern = new Brian({
complete: false
})
```