On this page
Configuration Options
Generating masks from info-maps
This configuration will generate a new mask data/masks/PG_buildings.png
based on info-maps tagged with building
when running the generator.
{
"name": "concrete",
"count": 2,
"tags": { "building": true },
"procedural": ["PG_buildings"]
},
Merging masks
Adding the same PG_name to multiple layers joins the layers into 1 mask.
{
"name": "grassDirtPatchy",
"count": 2,
"tags": { "landuse": "meadow" },
"procedural": ["PG_meadows"]
},
{
"name": "grass",
"count": 2,
"tags": { "natural": "grassland" },
"procedural": ["PG_meadows"]
},
Creating multiple masks
Adding multiple PG_names to the procedural
parameter generates a mask for each PG_name.
{
"name": "grassDirtPatchy",
"count": 2,
"tags": { "landuse": "meadow" },
"procedural": ["PG_meadows", "PG_grasslands"]
},