gruppe-adler / grad_mtg

Gruppe Adler Map Tile Generator (grad_mtg) is an Arma 3 Modification built on intercept, which allows the generation of so called map tiles.
MIT License
3 stars 1 forks source link

Switch between topographic / sat #4

Closed DerZade closed 5 years ago

DerZade commented 5 years ago

Map control classes:

class ctrlMapMain;
class grad_mtg_ctrlMap_sat: ctrlMapMain
{
    widthRailWay = 4;
    colorForest[] = {0.624,0.78,0.388,0.5};
    colorForestBorder[]={0,0,0,0};
    colorRailWay[]={1,0,0,1};
    fontInfo = "RobotoCondensedLight";
    fontLabel = "RobotoCondensedLight";
    drawShaded=0;

    class Legend
    {
        x=safeZoneW;
        y=safeZoneH;
        w=0;
        h=0;
        color[]={0,0,0,0};
        colorBackground[]={0,0,0,0};
        font="RobotoCondensedLight";
        sizeEX="0";
    };
};

class grad_mtg_ctrlMap_topo: grad_mtg_ctrlMap_sat
{
    maxSatelliteAlpha = 0;
};