2021-10-17 18:26:00 +02:00
|
|
|
---
|
|
|
|
title: only
|
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
Allows you to specify one or more parts to draft/render, rather than the entire pattern.
|
|
|
|
|
|
|
|
Accepts a part name as string, or an array of part names.
|
|
|
|
|
|
|
|
```js
|
|
|
|
import brian from "@freesewing/brian";
|
|
|
|
|
|
|
|
let pattern = new brian({
|
|
|
|
only: ["front", "sleeve"]
|
|
|
|
})
|
|
|
|
```
|