2015-04-12 09:59:02 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(enabled) {
|
2016-03-08 07:17:40 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(enabled_DisplayName);
|
|
|
|
description = CSTRING(enabled_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-13 19:20:07 +00:00
|
|
|
value = 0;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
2017-11-19 17:48:26 +00:00
|
|
|
class GVAR(muzzleVelocityVariationEnabled) {
|
|
|
|
category = CSTRING(DisplayName);
|
|
|
|
displayName = CSTRING(muzzleVelocityVariationEnabled_DisplayName);
|
|
|
|
description = CSTRING(muzzleVelocityVariationEnabled_Description);
|
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
2015-04-12 09:59:02 +00:00
|
|
|
class GVAR(ammoTemperatureEnabled) {
|
2016-03-08 07:17:40 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(ammoTemperatureEnabled_DisplayName);
|
|
|
|
description = CSTRING(ammoTemperatureEnabled_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-12 10:52:13 +00:00
|
|
|
value = 1;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
|
|
|
class GVAR(barrelLengthInfluenceEnabled) {
|
2016-03-08 07:17:40 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(barrelLengthInfluenceEnabled_DisplayName);
|
|
|
|
description = CSTRING(barrelLengthInfluenceEnabled_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-12 10:52:13 +00:00
|
|
|
value = 1;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
|
|
|
class GVAR(bulletTraceEnabled) {
|
2016-03-08 07:17:40 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(bulletTraceEnabled_DisplayName);
|
|
|
|
description = CSTRING(bulletTraceEnabled_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-12 10:52:13 +00:00
|
|
|
value = 1;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
2015-04-12 14:25:01 +00:00
|
|
|
class GVAR(simulationInterval) {
|
2016-03-08 07:17:40 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(simulationInterval_DisplayName);
|
|
|
|
description = CSTRING(simulationInterval_Description);
|
2015-04-12 14:25:01 +00:00
|
|
|
typeName = "SCALAR";
|
2016-11-24 23:15:41 +00:00
|
|
|
value = 0.05;
|
2017-11-13 17:50:08 +00:00
|
|
|
sliderSettings[] = {0, 0.2, 0.05, 1};
|
2015-04-12 14:25:01 +00:00
|
|
|
};
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|