Examples of BlendMode in NFTChef #37
Answered
by
nftchef
nerdylist
asked this question in
Help + Q&A
-
Hello, could you please give an example of the right way to do BlendMode in NFTChef? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
nftchef
Feb 19, 2022
Replies: 1 comment 2 replies
-
Hi, blend modes can be passed in at the layerOrder object, either to an entire layersOrder: [
{ name: "Background" },
{ name: "Hats", blend: 'multiply' },
{ name: "Male Hair" },
] Or to subfolders using the sublayer options layersOrder: [
{ name: "Background" },
{ name: "Hats", sublayerOptions: { SubFolderName: { blend: "source-over" } } },
{ name: "Male Hair" },
] |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
nerdylist
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, blend modes can be passed in at the layerOrder object, either to an entire
layer
using the blend property,Or to subfolders using the sublayer options