arma3:terrain:layers.cfg
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
arma3:terrain:layers.cfg [2017/10/08 13:21] – created initial page. snakeman | arma3:terrain:layers.cfg [2024/08/02 18:38] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== ArmA 3 Layers.cfg ====== | ====== ArmA 3 Layers.cfg ====== | ||
+ | |||
+ | [[https:// | ||
The layers.cfg file is where we configure our terrain types (concrete, grass, sand etc). The [[arma3: | The layers.cfg file is where we configure our terrain types (concrete, grass, sand etc). The [[arma3: | ||
- | Layers.cfg is placed in MyAddon\Source\ directory. | + | Layers.cfg is placed in tag_MyAddon\Source\ directory. |
**layers.cfg** | **layers.cfg** | ||
Line 10: | Line 12: | ||
{ | { | ||
// terrain types | // terrain types | ||
- | class | + | class |
{ | { | ||
// no need to specify actual texture file | // no need to specify actual texture file | ||
texture = ""; | texture = ""; | ||
- | material = "pmc\pmc_terrain_data\data\pmc_grass.rvmat"; | + | material = "tag\tag_MyAddon\data\tag_grass.rvmat"; |
}; | }; | ||
- | class | + | class |
{ | { | ||
texture = ""; | texture = ""; | ||
- | material = "pmc\pmc_terrain_data\data\pmc_beach.rvmat"; | + | material = "tag\tag_MyAddon\data\tag_beach.rvmat"; |
}; | }; | ||
- | class | + | class |
{ | { | ||
texture = ""; | texture = ""; | ||
- | material = "pmc\pmc_terrain_data\data\pmc_dirt.rvmat"; | + | material = "tag\tag_MyAddon\data\tag_dirt.rvmat"; |
}; | }; | ||
- | // etc... | + | // etc... |
+ | }; | ||
class Legend | class Legend | ||
{ | { | ||
Line 37: | Line 40: | ||
{ | { | ||
// RGB color values for terrain types (class layers) | // RGB color values for terrain types (class layers) | ||
- | pmc_grass[] = {{ 230, 230, 120 }}; | + | tag_grass[] = {{ 230, 230, 120 }}; |
- | pmc_beach[] = {{ 236, 230, 149 }}; | + | tag_beach[] = {{ 236, 230, 149 }}; |
- | pmc_dirt[] = {{ 226, 207, 129 }}; | + | tag_dirt[] = {{ 226, 207, 129 }}; |
- | // etc... | + | // etc... |
+ | }; | ||
+ | }; | ||
</ | </ | ||
mapLegend.png image can be located in P:\ root directory and then if you have two or more terrains you can leave out the directory from class legend and all your terrains will read this image from the same location, no need to duplicate same image with every terrain source dir. | mapLegend.png image can be located in P:\ root directory and then if you have two or more terrains you can leave out the directory from class legend and all your terrains will read this image from the same location, no need to duplicate same image with every terrain source dir. | ||
+ |
arma3/terrain/layers.cfg.1507468911.txt.gz · Last modified: 2017/10/08 13:21 by snakeman