ACE3/addons/winddeflection/ACE_Settings.hpp
ulteq d8b461db91 Enabled wind deflection for grenades and vehicle gunners:
*Added a new module option to disable WD for vehicle gunners
*Fixed enabled setting not being initialized
2015-04-18 21:17:37 +02:00

27 lines
846 B
C++

class ACE_Settings {
class GVAR(enabled) {
displayName = "Wind Deflection";
description = "Enables wind deflection";
typeName = "BOOL";
value = 1;
};
class GVAR(vehicleEnabled) {
displayName = "Vehicle Enabled";
description = "Enables wind deflection for static/vehicle gunners";
typeName = "BOOL";
value = 1;
};
class GVAR(simulationInterval) {
displayName = "Simulation Interval";
description = "Defines the interval between every calculation step";
typeName = "SCALAR";
value = 0.05;
};
class GVAR(simulationRadius) {
displayName = "Simulation Radius";
description = "Defines the radius (in meters) in which advanced ballistics are applied";
typeName = "SCALAR";
value = 3000;
};
};