mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fix Capitalization of ACE Settings classes. (#3627)
This commit is contained in:
parent
f34d890e7a
commit
b8abec0c61
@ -49,7 +49,7 @@ class ACE_Settings {
|
||||
description = CSTRING(SettingFeedbackIconsDesc);
|
||||
values[] = {ECSTRING(optionsmenu,Hide), ECSTRING(optionsmenu,TopRightDown), ECSTRING(optionsmenu,TopRightLeft), ECSTRING(optionsmenu,TopLeftDown), ECSTRING(optionsmenu,TopLeftRight)};
|
||||
};
|
||||
class GVAR(SettingProgressBarLocation) {
|
||||
class GVAR(settingProgressBarLocation) {
|
||||
value = 0;
|
||||
typeName = "SCALAR";
|
||||
force = 0;
|
||||
|
@ -34,7 +34,7 @@ createDialog QGVAR(ProgressBar_Dialog);
|
||||
|
||||
//Adjust position based on user setting:
|
||||
private _ctrlPos = ctrlPosition (uiNamespace getVariable QGVAR(ctrlProgressBarTitle));
|
||||
_ctrlPos set [1, ((0 + 29 * GVAR(SettingProgressBarLocation)) * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY + (safezoneH - (((safezoneW / safezoneH) min 1.2) / 1.2))/2))];
|
||||
_ctrlPos set [1, ((0 + 29 * GVAR(settingProgressBarLocation)) * ((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY + (safezoneH - (((safezoneW / safezoneH) min 1.2) / 1.2))/2))];
|
||||
|
||||
(uiNamespace getVariable QGVAR(ctrlProgressBG)) ctrlSetPosition _ctrlPos;
|
||||
(uiNamespace getVariable QGVAR(ctrlProgressBG)) ctrlCommit 0;
|
||||
|
@ -1,17 +1,17 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(RequireSpecialist) {
|
||||
class GVAR(requireSpecialist) {
|
||||
displayName = CSTRING(RequireSpecialist_DisplayName);
|
||||
description = CSTRING(RequireSpecialist_Description);
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(PunishNonSpecialists) {
|
||||
class GVAR(punishNonSpecialists) {
|
||||
displayName = CSTRING(PunishNonSpecialists_DisplayName);
|
||||
description = CSTRING(PunishNonSpecialists_Description);
|
||||
value = 1;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(ExplodeOnDefuse) {
|
||||
class GVAR(explodeOnDefuse) {
|
||||
displayName = CSTRING(ExplodeOnDefuse_DisplayName);
|
||||
description = CSTRING(ExplodeOnDefuse_Description);
|
||||
value = 1;
|
||||
|
@ -1,19 +1,19 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(Enabled) {
|
||||
class GVAR(enabled) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
displayName = CSTRING(EnableFrag);
|
||||
description = CSTRING(EnableFrag_Desc);
|
||||
typeName = "BOOL";
|
||||
value = 1;
|
||||
};
|
||||
class GVAR(SpallEnabled) {
|
||||
class GVAR(spallEnabled) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
displayName = CSTRING(EnableSpall);
|
||||
description = CSTRING(EnableSpall_Desc);
|
||||
typeName = "BOOL";
|
||||
value = 0;
|
||||
};
|
||||
class GVAR(ReflectionsEnabled) {
|
||||
class GVAR(reflectionsEnabled) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
displayName = CSTRING(EnableReflections);
|
||||
description = CSTRING(EnableReflections_Desc);
|
||||
@ -27,7 +27,7 @@ class ACE_Settings {
|
||||
typeName = "SCALAR";
|
||||
value = 500;
|
||||
};
|
||||
class GVAR(MaxTrackPerFrame) {
|
||||
class GVAR(maxTrackPerFrame) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
displayName = CSTRING(MaxTrackPerFrame);
|
||||
description = CSTRING(MaxTrackPerFrame_Desc);
|
||||
@ -35,7 +35,7 @@ class ACE_Settings {
|
||||
value = 50;
|
||||
};
|
||||
|
||||
class GVAR(EnableDebugTrace) {
|
||||
class GVAR(enableDebugTrace) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
displayName = CSTRING(EnableDebugTrace);
|
||||
description = CSTRING(EnableDebugTrace_Desc);
|
||||
|
@ -1,22 +1,22 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(EnableCombatDeafness) {
|
||||
class GVAR(enableCombatDeafness) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
value = 1;
|
||||
typeName = "BOOL";
|
||||
displayName = CSTRING(EnableCombatDeafness_DisplayName);
|
||||
description = CSTRING(EnableCombatDeafness_Description);
|
||||
};
|
||||
class GVAR(EarplugsVolume) {
|
||||
class GVAR(earplugsVolume) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
value = 0.5;
|
||||
typeName = "SCALAR";
|
||||
};
|
||||
class GVAR(UnconsciousnessVolume) {
|
||||
class GVAR(unconsciousnessVolume) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
value = 0.4;
|
||||
typeName = "SCALAR";
|
||||
};
|
||||
class GVAR(DisableEarRinging) {
|
||||
class GVAR(disableEarRinging) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
|
@ -1,5 +1,5 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(AlwaysUseCursorSelfInteraction) {
|
||||
class GVAR(alwaysUseCursorSelfInteraction) {
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
isClientSettable = 1;
|
||||
@ -14,14 +14,14 @@ class ACE_Settings {
|
||||
displayName = CSTRING(cursorKeepCentered);
|
||||
description = CSTRING(cursorKeepCenteredDescription);
|
||||
};
|
||||
class GVAR(AlwaysUseCursorInteraction) {
|
||||
class GVAR(alwaysUseCursorInteraction) {
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
isClientSettable = 1;
|
||||
category = CSTRING(Category_InteractionMenu);
|
||||
displayName = CSTRING(AlwaysUseCursorInteraction);
|
||||
};
|
||||
class GVAR(UseListMenu) {
|
||||
class GVAR(useListMenu) {
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
isClientSettable = 1;
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
class ACE_Settings {
|
||||
class GVAR(EnableTeamManagement) {
|
||||
class GVAR(enableTeamManagement) {
|
||||
displayName = CSTRING(EnableTeamManagement_DisplayName);
|
||||
description = CSTRING(EnableTeamManagement_Description);
|
||||
value = 1;
|
||||
|
@ -1,16 +1,16 @@
|
||||
class ACE_Settings {
|
||||
//Time to move a round from one magazine to another
|
||||
class GVAR(TimePerAmmo) {
|
||||
class GVAR(timePerAmmo) {
|
||||
value = 1.5;
|
||||
typeName = "SCALAR";
|
||||
};
|
||||
//Time to swap between magazines when repacking
|
||||
class GVAR(TimePerMagazine) {
|
||||
class GVAR(timePerMagazine) {
|
||||
value = 2.0;
|
||||
typeName = "SCALAR";
|
||||
};
|
||||
//Time to relink 2 belts together
|
||||
class GVAR(TimePerBeltLink) {
|
||||
class GVAR(timePerBeltLink) {
|
||||
value = 8.0;
|
||||
typeName = "SCALAR";
|
||||
};
|
||||
|
@ -62,7 +62,7 @@ class ACE_Settings {
|
||||
displayName = CSTRING(MapShowCursorCoordinates_DisplayName);
|
||||
description = CSTRING(MapShowCursorCoordinates_Description);
|
||||
};
|
||||
class GVAR(DefaultChannel) {
|
||||
class GVAR(defaultChannel) {
|
||||
category = CSTRING(Module_DisplayName);
|
||||
value = -1;
|
||||
typeName = "SCALAR";
|
||||
|
@ -44,16 +44,16 @@ class ACE_Settings {
|
||||
typeName = "COLOR";
|
||||
value[] = {1, 0.88, 0, 0.7};
|
||||
};
|
||||
class GVAR(GroupColorConfigurations) {
|
||||
displayName = CSTRING(GroupColorConfigurations_displayName);
|
||||
description = CSTRING(GroupColorConfigurations_description);
|
||||
class GVAR(groupColorConfigurations) {
|
||||
displayName = CSTRING(groupColorConfigurations_displayName);
|
||||
description = CSTRING(groupColorConfigurations_description);
|
||||
category = CSTRING(mapGestures_category);
|
||||
typeName = "ARRAY";
|
||||
value[] = {};
|
||||
};
|
||||
class GVAR(GroupColorConfigurationMapping) {
|
||||
displayName = CSTRING(GroupColorConfigurationMapping_displayName);
|
||||
description = CSTRING(GroupColorConfigurationMapping_description);
|
||||
class GVAR(groupColorConfigurationMapping) {
|
||||
displayName = CSTRING(groupColorConfigurationMapping_displayName);
|
||||
description = CSTRING(groupColorConfigurationMapping_description);
|
||||
category = CSTRING(mapGestures_category);
|
||||
typeName = "ARRAY";
|
||||
value[] = {{}, {}};
|
||||
|
@ -1,5 +1,5 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(EveryoneCanDrawOnBriefing) {
|
||||
class GVAR(everyoneCanDrawOnBriefing) {
|
||||
value = 1;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
|
@ -1,5 +1,5 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(MapDataAvailable) {
|
||||
class GVAR(mapDataAvailable) {
|
||||
displayName = CSTRING(MapDataAvailable_DisplayName);
|
||||
description = CSTRING(MapDataAvailable_Description);
|
||||
value = 2;
|
||||
|
@ -1,5 +1,5 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(DisplayTextOnJam) {
|
||||
class GVAR(displayTextOnJam) {
|
||||
typeName = "BOOL";
|
||||
isClientSettable = 1;
|
||||
value = 1;
|
||||
|
@ -1,5 +1,5 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(DisplayText) {
|
||||
class GVAR(displayText) {
|
||||
typeName = "BOOL";
|
||||
isClientSettable = 1;
|
||||
value = 1;
|
||||
|
@ -1,5 +1,5 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(DisplayTextOnRepair) {
|
||||
class GVAR(displayTextOnRepair) {
|
||||
displayName = CSTRING(SettingDisplayTextName);
|
||||
description = CSTRING(SettingDisplayTextDesc);
|
||||
typeName = "BOOL";
|
||||
@ -7,7 +7,7 @@ class ACE_Settings {
|
||||
value = 1;
|
||||
category = ECSTRING(OptionsMenu,CategoryLogistics);
|
||||
};
|
||||
class GVAR(engineerSetting_Repair) {
|
||||
class GVAR(engineerSetting_repair) {
|
||||
displayName = CSTRING(enginerSetting_Repair_name);
|
||||
description = CSTRING(enginerSetting_Repair_description);
|
||||
typeName = "SCALAR";
|
||||
@ -15,7 +15,7 @@ class ACE_Settings {
|
||||
values[] = {CSTRING(engineerSetting_anyone), CSTRING(engineerSetting_EngineerOnly), CSTRING(engineerSetting_RepairSpecialistOnly)};
|
||||
category = ECSTRING(OptionsMenu,CategoryLogistics);
|
||||
};
|
||||
class GVAR(engineerSetting_Wheel) {
|
||||
class GVAR(engineerSetting_wheel) {
|
||||
displayName = CSTRING(enginerSetting_Wheel_name);
|
||||
description = CSTRING(enginerSetting_Wheel_description);
|
||||
typeName = "SCALAR";
|
||||
@ -30,14 +30,14 @@ class ACE_Settings {
|
||||
value = 0.6;
|
||||
category = ECSTRING(OptionsMenu,CategoryLogistics);
|
||||
};
|
||||
class GVAR(repairDamageThreshold_Engineer) {
|
||||
class GVAR(repairDamageThreshold_engineer) {
|
||||
displayName = CSTRING(repairDamageThreshold_Engineer_name);
|
||||
description = CSTRING(repairDamageThreshold_Engineer_description);
|
||||
typeName = "SCALAR";
|
||||
value = 0.4;
|
||||
category = ECSTRING(OptionsMenu,CategoryLogistics);
|
||||
};
|
||||
class GVAR(consumeItem_ToolKit) {
|
||||
class GVAR(consumeItem_toolKit) {
|
||||
displayName = CSTRING(consumeItem_ToolKit_name);
|
||||
description = CSTRING(consumeItem_ToolKit_description);
|
||||
typeName = "SCALAR";
|
||||
|
@ -1,18 +1,18 @@
|
||||
|
||||
class ACE_Settings {
|
||||
class GVAR(SavePreDeathGear) {
|
||||
class GVAR(savePreDeathGear) {
|
||||
displayName = CSTRING(SavePreDeathGear_DisplayName);
|
||||
description = CSTRING(SavePreDeathGear_Description);
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(RemoveDeadBodiesDisconnected) {
|
||||
class GVAR(removeDeadBodiesDisconnected) {
|
||||
displayName = CSTRING(RemoveDeadBodiesDisconnected_DisplayName);
|
||||
description = CSTRING(RemoveDeadBodiesDisconnected_Description);
|
||||
value = 1;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(BodyRemoveTimer) {
|
||||
class GVAR(bodyRemoveTimer) {
|
||||
value = 0;
|
||||
typeName = "SCALAR";
|
||||
};
|
||||
|
@ -1,39 +1,39 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(EnableSwitchUnits) {
|
||||
class GVAR(enableSwitchUnits) {
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(SwitchToWest) {
|
||||
class GVAR(switchToWest) {
|
||||
displayName = CSTRING(SwitchToWest_DisplayName);
|
||||
description = CSTRING(SwitchToWest_Description);
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(SwitchToEast) {
|
||||
class GVAR(switchToEast) {
|
||||
displayName = CSTRING(SwitchToEast_DisplayName);
|
||||
description = CSTRING(SwitchToEast_Description);
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(SwitchToIndependent) {
|
||||
class GVAR(switchToIndependent) {
|
||||
displayName = CSTRING(SwitchToIndependent_DisplayName);
|
||||
description = CSTRING(SwitchToIndependent_Description);
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(SwitchToCivilian) {
|
||||
class GVAR(switchToCivilian) {
|
||||
displayName = CSTRING(SwitchToCivilian_DisplayName);
|
||||
description = CSTRING(SwitchToCivilian_Description);
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(EnableSafeZone) {
|
||||
class GVAR(enableSafeZone) {
|
||||
displayName = CSTRING(EnableSafeZone_DisplayName);
|
||||
description = CSTRING(EnableSafeZone_Description);
|
||||
value = 1;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(SafeZoneRadius) {
|
||||
class GVAR(safeZoneRadius) {
|
||||
displayName = CSTRING(SafeZoneRadius_DisplayName);
|
||||
description = CSTRING(SafeZoneRadius_Description);
|
||||
value = 100;
|
||||
|
@ -1,17 +1,17 @@
|
||||
class ACE_Settings {
|
||||
class GVAR(DefaultLockpickStrength) {
|
||||
class GVAR(defaultLockpickStrength) {
|
||||
displayName = CSTRING(DefaultLockpickStrength_DisplayName);
|
||||
description = CSTRING(DefaultLockpickStrength_Description);
|
||||
value = 10;
|
||||
typeName = "SCALAR";
|
||||
};
|
||||
class GVAR(LockVehicleInventory) {
|
||||
class GVAR(lockVehicleInventory) {
|
||||
displayName = CSTRING(LockVehicleInventory_DisplayName);
|
||||
description = CSTRING(LockVehicleInventory_Description);
|
||||
value = 0;
|
||||
typeName = "BOOL";
|
||||
};
|
||||
class GVAR(VehicleStartingLockState) {
|
||||
class GVAR(vehicleStartingLockState) {
|
||||
displayName = CSTRING(VehicleStartingLockState_DisplayName);
|
||||
description = CSTRING(VehicleStartingLockState_Description);
|
||||
value = -1;
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
class ACE_Settings {
|
||||
class GVAR(DisplayText) {
|
||||
class GVAR(displayText) {
|
||||
typeName = "BOOL";
|
||||
isClientSettable = 1;
|
||||
value = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user