mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
666 B
C++
20 lines
666 B
C++
class CfgVehicles {
|
|
class Module_F;
|
|
class ACE_ModuleViewDistance : Module_F {
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
category = "ACE";
|
|
displayName = "View Distance Limiter";
|
|
function = QFUNC(module);
|
|
scope = 2;
|
|
isGlobal = 1;
|
|
//icon = ""; // needs an icon
|
|
class Arguments {
|
|
class moduleViewDistanceLimit {
|
|
displayName = "View Distance setting limit";
|
|
description = "Sets the limit for how high clients can raise their view distance (< 10000)";
|
|
typeName = "SCALAR";
|
|
defaultValue = 10000;
|
|
};
|
|
};
|
|
};
|
|
}; |