You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -260,6 +260,21 @@ const pixelFormat = {
260
260
};
261
261
```
262
262
263
+
### Generate pixelated images from collection
264
+
265
+
In order to export gifs based on the layers created, you just need to set the export on the `gif` object in the `src/config.js` file to `true`. You can also play around with the `repeat`, `quality` and the `delay` of the exported gif.
266
+
267
+
Setting the `repeat: -1` will produce a one time render and `repeat: 0` will loop forever.
268
+
269
+
```js
270
+
constgif= {
271
+
export:true,
272
+
repeat:0,
273
+
quality:100,
274
+
delay:500,
275
+
};
276
+
```
277
+
263
278
### Printing rarity data (Experimental feature)
264
279
265
280
To see the percentages of each attribute across your collection, run:
0 commit comments