-
Notifications
You must be signed in to change notification settings - Fork 1
/
MENUDEF
29 lines (25 loc) · 1.01 KB
/
MENUDEF
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
OptionMenu "DampedWeaponOptions"
{
Title "Weapon Sway Options"
StaticText "---", "White"
StaticText "These control the GLOBAL scale of weapon sway.", "White"
StaticText "Set to 0 to disable sway entirely.", "White"
StaticText "---", "White"
StaticText "", "White"
Slider "Side Sway Intensity", sway_intensity_x, 0.0, 2.0, 0.1, 1
Slider "Up/Down Sway Intensity", sway_intensity_y, 0.0, 2.0, 0.1, 1
Slider "Back/Forward Intensity", sway_intensity_z, 0.0, 2.0, 0.1, 1
StaticText "---", "White"
StaticText "These control how much the weapon sways from", "White"
StaticText "your movement and turning.", "White"
StaticText "Set to 0 to disable movement/turning sway.", "White"
StaticText "---", "White"
StaticText "", "White"
Slider "Movement Sway Intensity", vel_sway_intensity, 0.0, 2.0, 0.1, 1
Slider "Turning Sway Intensity", turn_sway_intensity, 0.0, 2.0, 0.1, 1
Slider "Jumping Sway Intensity", jump_sway_intensity, 0.0, 2.0, 0.1, 1
}
AddOptionMenu "OptionsMenu"
{
Submenu "Sway Options", "DampedWeaponOptions"
}