Add a category name to frag settings

This commit is contained in:
esteldunedain 2016-02-18 12:28:00 -03:00
parent a8131f597a
commit 87dd607901
2 changed files with 17 additions and 0 deletions

View File

@ -1,29 +1,34 @@
class ACE_Settings { class ACE_Settings {
class GVAR(Enabled) { class GVAR(Enabled) {
category = CSTRING(Module_DisplayName);
displayName = CSTRING(EnableFrag); displayName = CSTRING(EnableFrag);
description = CSTRING(EnableFrag_Desc); description = CSTRING(EnableFrag_Desc);
typeName = "BOOL"; typeName = "BOOL";
value = 1; value = 1;
}; };
class GVAR(SpallEnabled) { class GVAR(SpallEnabled) {
category = CSTRING(Module_DisplayName);
displayName = CSTRING(EnableSpall); displayName = CSTRING(EnableSpall);
description = CSTRING(EnableSpall_Desc); description = CSTRING(EnableSpall_Desc);
typeName = "BOOL"; typeName = "BOOL";
value = 0; value = 0;
}; };
class GVAR(ReflectionsEnabled) { class GVAR(ReflectionsEnabled) {
category = CSTRING(Module_DisplayName);
displayName = CSTRING(EnableReflections); displayName = CSTRING(EnableReflections);
description = CSTRING(EnableReflections_Desc); description = CSTRING(EnableReflections_Desc);
typeName = "BOOL"; typeName = "BOOL";
value = 0; value = 0;
}; };
class GVAR(maxTrack) { class GVAR(maxTrack) {
category = CSTRING(Module_DisplayName);
displayName = CSTRING(MaxTrack); displayName = CSTRING(MaxTrack);
description = CSTRING(MaxTrack_Desc); description = CSTRING(MaxTrack_Desc);
typeName = "SCALAR"; typeName = "SCALAR";
value = 500; value = 500;
}; };
class GVAR(MaxTrackPerFrame) { class GVAR(MaxTrackPerFrame) {
category = CSTRING(Module_DisplayName);
displayName = CSTRING(MaxTrackPerFrame); displayName = CSTRING(MaxTrackPerFrame);
description = CSTRING(MaxTrackPerFrame_Desc); description = CSTRING(MaxTrackPerFrame_Desc);
typeName = "SCALAR"; typeName = "SCALAR";
@ -31,6 +36,7 @@ class ACE_Settings {
}; };
class GVAR(EnableDebugTrace) { class GVAR(EnableDebugTrace) {
category = CSTRING(Module_DisplayName);
displayName = CSTRING(EnableDebugTrace); displayName = CSTRING(EnableDebugTrace);
description = CSTRING(EnableDebugTrace_Desc); description = CSTRING(EnableDebugTrace_Desc);
typeName = "BOOL"; typeName = "BOOL";

View File

@ -1,6 +1,17 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project name="ACE"> <Project name="ACE">
<Package name="Frag"> <Package name="Frag">
<Key ID="STR_ACE_Frag_Module_DisplayName">
<English>Fragmentation Simulation</English>
<Polish>Symulacja fragmentacji</Polish>
<Spanish>Simulación de fragmentación</Spanish>
<German>Splittersimulation</German>
<Czech>Simulace fragmentů</Czech>
<Portuguese>Simulação de fragmentação</Portuguese>
<French>Simulation de la fragmentation</French>
<Hungarian>Repesz-szimuláció</Hungarian>
<Russian>Симуляция осколков</Russian>
</Key>
<Key ID="STR_ACE_Frag_EnableFrag"> <Key ID="STR_ACE_Frag_EnableFrag">
<English>Fragmentation Simulation</English> <English>Fragmentation Simulation</English>
<Polish>Symulacja fragmentacji</Polish> <Polish>Symulacja fragmentacji</Polish>