Skip to content

Picassio Module

Matthew Kelly edited this page Jul 26, 2016 · 2 revisions

The Picassio module will allow you to run additional Picassio palettes from within another Picassio palette. You can choose to run either the paint or erase sections of those palettes.

Properties

Key Type Description Values
ensure string Specifies the type of operation the Picassio module will use paint, erase
palettes string array Array of paths to where your Picassio palettes can be found
Note: the palette file must be specified, even if it's the default picassio.palette
-

Paint

The following is an example of using the Picassio type in a paint section:

{
    "paint": [
        {
            "type": "picassio",
            "ensure": "paint",
            "palettes": [
                "C:\\path\\to\\picassio.palette"
            ]
        }
    ]
}

This will run Picassio over the C:\path\to\picassio.palette, using the -paint function.

Erase

The following is an example of using the Picassio type in a erase section:

{
    "erase": [
        {
            "type": "picassio",
            "ensure": "erase",
            "palettes": [
                "C:\\path\\to\\picassio.palette"
            ]
        }
    ]
}

This will run Picassio over the C:\path\to\picassio.palette, using the -erase function.