-
Notifications
You must be signed in to change notification settings - Fork 739
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix sway factor, switch to CBA settings in AF * Add movedToSQF
- Loading branch information
1 parent
232f986
commit 9aba78b
Showing
4 changed files
with
27 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,20 @@ | ||
class ACE_Settings { | ||
class GVAR(enabled) { | ||
category = CSTRING(DisplayName); | ||
displayName = CSTRING(Enabled); | ||
description = CSTRING(Enabled_Description); | ||
typeName = "BOOL"; | ||
value = 1; | ||
movedToSQF = 1; | ||
}; | ||
class GVAR(enableStaminaBar) { | ||
category = CSTRING(DisplayName); | ||
displayName = CSTRING(EnableStaminaBar); | ||
description = CSTRING(EnableStaminaBar_Description); | ||
typeName = "BOOL"; | ||
value = 1; | ||
isClientSettable = 1; | ||
movedToSQF = 1; | ||
}; | ||
class GVAR(performanceFactor) { | ||
category = CSTRING(DisplayName); | ||
displayName = CSTRING(PerformanceFactor); | ||
description = CSTRING(PerformanceFactor_Description); | ||
typeName = "SCALAR"; | ||
value = 1; | ||
sliderSettings[] = {0, 5, 1, 1}; | ||
movedToSQF = 1; | ||
}; | ||
class GVAR(recoveryFactor) { | ||
category = CSTRING(DisplayName); | ||
displayName = CSTRING(RecoveryFactor); | ||
description = CSTRING(RecoveryFactor_Description); | ||
typeName = "SCALAR"; | ||
value = 1; | ||
sliderSettings[] = {0, 5, 1, 1}; | ||
movedToSQF = 1; | ||
}; | ||
class GVAR(loadFactor) { | ||
category = CSTRING(DisplayName); | ||
displayName = CSTRING(LoadFactor); | ||
description = CSTRING(LoadFactor_Description); | ||
typeName = "SCALAR"; | ||
value = 1; | ||
sliderSettings[] = {0, 5, 1, 1}; | ||
movedToSQF = 1; | ||
}; | ||
class GVAR(terrainGradientFactor) { | ||
category = CSTRING(DisplayName); | ||
displayName = CSTRING(TerrainGradientFactor); | ||
description = CSTRING(TerrainGradientFactor_Description); | ||
typeName = "SCALAR"; | ||
value = 1; | ||
sliderSettings[] = {0, 5, 1, 1}; | ||
movedToSQF = 1; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters