0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-18 20:53:24 +00:00

Add subsnippets for edge masks

This commit is contained in:
Trevor Buckner
2023-02-07 10:31:29 -05:00
parent 2ea639000b
commit 63346cfd7a
2 changed files with 32 additions and 3 deletions

View File

@@ -104,7 +104,29 @@ module.exports = [
{
name : 'Watercolor Image Mask Edge',
icon : 'fas fa-fill-drip',
gen : ImageMaskGen.edge,
gen : ImageMaskGen.edge('bottom'),
subsnippets : [
{
name : 'Top',
icon : 'fac position-top',
gen : ImageMaskGen.edge('top'),
},
{
name : 'Right',
icon : 'fac position-right',
gen : ImageMaskGen.edge('right'),
},
{
name : 'Bottom',
icon : 'fac position-bottom',
gen : ImageMaskGen.edge('bottom'),
},
{
name : 'Left',
icon : 'fac position-left',
gen : ImageMaskGen.edge('left'),
},
]
},
{
name : 'Watercolor Image Mask Corner',