diff options
| author | CriticalFlaw <[email protected]> | 2020-08-08 21:40:12 -0400 |
|---|---|---|
| committer | CriticalFlaw <[email protected]> | 2020-08-08 21:40:12 -0400 |
| commit | ac615cd93f8146a95e41aee53286f92289cf0d79 (patch) | |
| tree | 5815b8b2e52c1f3a13c7a1eddfa44f9f8ae72ea6 | |
| parent | c8ba1648bd2752ba647b09f164739a7c5ff83734 (diff) | |
Fixed Server Navigation Keys
- Moved the main menu backgrounds to better work with the installer.
- Fixed not being able to navigate server welcome screens with E and Q keys.
- Fixed the metal counter overlapping slightly when enough metal is added.
| -rw-r--r-- | materials/console/background_upward.vmt | 2 | ||||
| -rw-r--r-- | materials/console/background_upward_widescreen.vmt | 2 | ||||
| -rw-r--r-- | materials/console/backgrounds/background_classic.vtf (renamed from customizations/Backgrounds/background_classic.vtf) | bin | 2796384 -> 2796384 bytes | |||
| -rw-r--r-- | materials/console/backgrounds/background_classic_widescreen.vtf (renamed from customizations/Backgrounds/background_classic_widescreen.vtf) | bin | 2796384 -> 2796384 bytes | |||
| -rw-r--r-- | materials/console/backgrounds/background_modern.vtf (renamed from materials/console/background_upward.vtf) | bin | 2796384 -> 2796384 bytes | |||
| -rw-r--r-- | materials/console/backgrounds/background_modern_widescreen.vtf (renamed from materials/console/background_upward_widescreen.vtf) | bin | 2796384 -> 2796384 bytes | |||
| -rw-r--r-- | resource/ui/hudaccountpanel.res | 2 | ||||
| -rw-r--r-- | resource/ui/mapinfomenu.res | 24 | ||||
| -rw-r--r-- | resource/ui/textwindow.res | 12 |
9 files changed, 39 insertions, 3 deletions
diff --git a/materials/console/background_upward.vmt b/materials/console/background_upward.vmt index a0bef69..ad879ea 100644 --- a/materials/console/background_upward.vmt +++ b/materials/console/background_upward.vmt @@ -1,6 +1,6 @@ "UnlitGeneric" { - "$baseTexture" "console/background_upward" + "$baseTexture" "console/backgrounds/background_modern" "$vertexcolor" 1 "$vertexalpha" 1 "$ignorez" 1 diff --git a/materials/console/background_upward_widescreen.vmt b/materials/console/background_upward_widescreen.vmt index ad1e0b2..e16549f 100644 --- a/materials/console/background_upward_widescreen.vmt +++ b/materials/console/background_upward_widescreen.vmt @@ -1,6 +1,6 @@ "UnlitGeneric" { - "$baseTexture" "console/background_upward_widescreen" + "$baseTexture" "console/backgrounds/background_modern_widescreen" "$vertexcolor" 1 "$vertexalpha" 1 "$ignorez" 1 diff --git a/customizations/Backgrounds/background_classic.vtf b/materials/console/backgrounds/background_classic.vtf Binary files differindex 3dd1d6d..3dd1d6d 100644 --- a/customizations/Backgrounds/background_classic.vtf +++ b/materials/console/backgrounds/background_classic.vtf diff --git a/customizations/Backgrounds/background_classic_widescreen.vtf b/materials/console/backgrounds/background_classic_widescreen.vtf Binary files differindex 3dd1d6d..3dd1d6d 100644 --- a/customizations/Backgrounds/background_classic_widescreen.vtf +++ b/materials/console/backgrounds/background_classic_widescreen.vtf diff --git a/materials/console/background_upward.vtf b/materials/console/backgrounds/background_modern.vtf Binary files differindex 6eae25d..6eae25d 100644 --- a/materials/console/background_upward.vtf +++ b/materials/console/backgrounds/background_modern.vtf diff --git a/materials/console/background_upward_widescreen.vtf b/materials/console/backgrounds/background_modern_widescreen.vtf Binary files differindex 6eae25d..6eae25d 100644 --- a/materials/console/background_upward_widescreen.vtf +++ b/materials/console/backgrounds/background_modern_widescreen.vtf diff --git a/resource/ui/hudaccountpanel.res b/resource/ui/hudaccountpanel.res index 00cab75..bf0cc16 100644 --- a/resource/ui/hudaccountpanel.res +++ b/resource/ui/hudaccountpanel.res @@ -2,7 +2,7 @@ { "CHudAccountPanel" { - "delta_item_x" "10" + "delta_item_x" "8" "delta_item_start_y" "10" "delta_item_end_y" "35" "PositiveColor" "ColorGreen" diff --git a/resource/ui/mapinfomenu.res b/resource/ui/mapinfomenu.res index a8a7206..c8868d7 100644 --- a/resource/ui/mapinfomenu.res +++ b/resource/ui/mapinfomenu.res @@ -181,4 +181,28 @@ "fieldName" "ShadedBar" "xpos" "9999" } + + "teambutton0SC" + { + "ControlName" "CExButton" + "fieldName" "teambutton0SC" + "wide" "0" + "tall" "0" + "visible" "1" + "enabled" "1" + "labelText" "&E" + "command" "continue" + } + + "teambutton1SC" + { + "ControlName" "CExButton" + "fieldName" "teambutton1SC" + "wide" "0" + "tall" "0" + "visible" "1" + "enabled" "1" + "labelText" "&Q" + "command" "back" + } }
\ No newline at end of file diff --git a/resource/ui/textwindow.res b/resource/ui/textwindow.res index 1b06204..60171aa 100644 --- a/resource/ui/textwindow.res +++ b/resource/ui/textwindow.res @@ -149,4 +149,16 @@ "visible" "0" "enabled" "0" } + + "teambutton0SC" + { + "ControlName" "CExButton" + "fieldName" "teambutton0SC" + "wide" "0" + "tall" "0" + "visible" "1" + "enabled" "1" + "labelText" "&E" + "command" "okay" + } }
\ No newline at end of file |
