mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
65 lines
2.4 KiB
C++
65 lines
2.4 KiB
C++
class ACE_Settings {
|
|
class GVAR(enabled) {
|
|
displayName = "Advanced Ballistics";
|
|
description = "Enables advanced ballistics";
|
|
typeName = "BOOL";
|
|
value = 0;
|
|
};
|
|
class GVAR(alwaysSimulateForSnipers) {
|
|
displayName = "Always Enabled For Snipers";
|
|
description = "Always enables advanced ballistics when high power optics are used";
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(disabledInFullAutoMode) {
|
|
displayName = "Disabled In FullAuto Mode";
|
|
description = "Disables the advanced ballistics during full auto fire";
|
|
typeName = "BOOL";
|
|
value = 0;
|
|
};
|
|
class GVAR(onlyActiveForLocalPlayers) {
|
|
displayName = "Disabled For Non Local Players";
|
|
description = "Disables the advanced ballistics for bullets coming from other players (enable this if you encounter frame drops during heavy firefights in multiplayer)";
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
/* // TODO: We currently do not have firedEHs on vehicles
|
|
class GVAR(vehicleGunnerEnabled) {
|
|
displayName = "Enabled For Vehicle Gunners";
|
|
description = "Enables advanced ballistics for vehicle gunners";
|
|
typeName = "BOOL";
|
|
value = 0;
|
|
};
|
|
*/
|
|
class GVAR(ammoTemperatureEnabled) {
|
|
displayName = "Enable Ammo Temperature Simulation";
|
|
description = "Muzzle velocity varies with ammo temperature";
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(barrelLengthInfluenceEnabled) {
|
|
displayName = "Enable Barrel Length Simulation";
|
|
description = "Muzzle velocity varies with barrel length";
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(bulletTraceEnabled) {
|
|
displayName = "Enable Bullet Trace Effect";
|
|
description = "Enables a bullet trace effect to high caliber bullets (only visible when looking through high power optics)";
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(simulationInterval) {
|
|
displayName = "Simulation Interval";
|
|
description = "Defines the interval between every calculation step";
|
|
typeName = "SCALAR";
|
|
value = 0.0;
|
|
};
|
|
class GVAR(simulationRadius) {
|
|
displayName = "Simulation Radius";
|
|
description = "Defines the radius (in meters) in which advanced ballistics are applied";
|
|
typeName = "SCALAR";
|
|
value = 3000;
|
|
};
|
|
};
|