-
Notifications
You must be signed in to change notification settings - Fork 2
/
MENUDEF.zdoom
74 lines (63 loc) · 1.93 KB
/
MENUDEF.zdoom
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//-------------------------------------------------------------------------------------------
//
// GZDoom 4.7.1
// HUD menu
//
//-------------------------------------------------------------------------------------------
AddOptionMenu "OptionsMenu"
{
StaticText " "
Submenu "HXRTC HUD Platinum","HXRTCHUDPlat"
}
OptionMenu "HXRTCHUDPlat"
{
Title "HXRTC HUD Options"
StaticText "Engine Settings", 1
ScaleSlider "$SCALEMNU_HUD", "hud_scale", -1.0, 8.0, 1.0, "$SCALEMNU_USEUI", "$SCALEMNU_USEFS"
StaticText " "
StaticText "Panel Customization", 1
Option "Air Supply", "hxcus_HXAirMeter", "OnOff"
Option "Armor Save %", "hxcus_HXArmorSave", "OnOff"
Option "Current Item", "hxcus_HXArtifact", "OnOff"
Option "Keys Bar Extended", "hxcus_HXKeysExtended", "OnOff"
Option "Level Stats", "hxcus_HXPTKIS", "HXRTCHUDPlat_Cus_PTKIS"
Option "Level Stats Length", "hxcus_HXKISExtended", "HXRTCHUDPlat_Cus_LevelStatsLength"
Option "Powerup Visibility", "hxcus_HXPowerupBox", "HXRTCHUDPlat_Cus_Powerups"
Option "Powerup Timer Visibility", "hxcus_HXPowerupTimer", "HXRTCHUDPlat_Cus_Powerups"
Option "Weapon Icon", "hxcus_HXWepIcon", "OnOff"
Option "Weapon Slots Bar", "hxcus_HXArmsBar", "OnOff"
StaticText " "
StaticText "Accessibility Settings", 1
Option "Low Motion", "hxcus_HXLowMotion", "OnOff"
StaticText " "
StaticText "Mod-Specific Settings", 1
Option "WolfenDoom Compatibility", "hxmod_ForceWolfenDoom", "HXRTCHUDPlat_Cus_ForceWolfenDoom"
StaticText " "
StaticText "Developer Tools", 1
Option "Tag Readout", "hxsys_debugtag", "OnOff"
}
OptionValue HXRTCHUDPlat_Cus_ForceWolfenDoom
{
0.0, "Off"
1.0, "On"
2.0, "On + Powerups"
}
OptionValue HXRTCHUDPlat_Cus_LevelStatsLength
{
0.0, "4 Digits"
1.0, "5 Digits"
2.0, "6 Digits"
}
OptionValue HXRTCHUDPlat_Cus_Powerups
{
0.0, "Never"
1.0, "Only When Active"
2.0, "Always"
}
OptionValue HXRTCHUDPlat_Cus_PTKIS
{
0.0, "None"
1.0, "Kills/Items/Secrets"
2.0, "Level Timer"
3.0, "Both K/I/S + Timer"
}