HashLips / generative-art-opensource

Create generative art by using the canvas api and node js, feel free to contribute to this repo with new ideas.
MIT License
1.36k stars 693 forks source link

Cant generate more then 10 images #151

Closed Wanackon closed 3 years ago

Wanackon commented 3 years ago

Got this error:

creating NFT 1 of 9998

dprodrick commented 3 years ago

@Wanackon Check that each image in each of your layer contains the delimiter symbol you have set in your config.json.

So for example, in my config.json it looks like the following:

const rarityDelimiter = "#";

So in my case, I need to make sure that each image contains a # in the filename eg 'red beak#10.png'.

Wanackon commented 3 years ago

It fixed an issue. Thanks a lot.