mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
33 lines
1.2 KiB
C++
33 lines
1.2 KiB
C++
class CfgVehicles {
|
|
class Logic;
|
|
class Module_F: Logic {
|
|
class ArgumentsBaseUnits {};
|
|
class ModuleDescription {};
|
|
};
|
|
class GVAR(dagrModule): Module_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
category = "ACE";
|
|
displayName = "MicroDAGR Map Fill";
|
|
function = QFUNC(moduleMapFill);
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
// icon = QUOTE(PATHTOF(ui\IconLock_ca.paa));
|
|
functionPriority = 0;
|
|
class Arguments {
|
|
class MapDataAvailable {
|
|
displayName = "MicroDAGR Map Fill"; // Argument label
|
|
description = "How much map data is filled on MicroDAGRs "; // Tooltip description
|
|
typeName = "NUMBER"; // Value type, can be "NUMBER", "STRING" or "BOOL"
|
|
class values {
|
|
class None {name = "Full Satellite + Buildings"; value = MAP_DETAIL_SAT; default = 1;};
|
|
class Side {name = "Topographical + Roads"; value = MAP_DETAIL_TOPOROADS;};
|
|
class Unique {name = "None (Cannot use map view)"; value = MAP_DETAIL_NONE;};
|
|
};
|
|
};
|
|
};
|
|
class ModuleDescription: ModuleDescription {
|
|
description = "Controls how muchdata is filled in the microDAGR items. Less data restricts the map view to show less on the minimap.<br/>Source: microDAGR.pbo";
|
|
};
|
|
};
|
|
};
|