diff options
Diffstat (limited to 'resource')
88 files changed, 1696 insertions, 6316 deletions
diff --git a/resource/ClientScheme.res b/resource/ClientScheme.res index ab9befb..03a15e0 100644 --- a/resource/ClientScheme.res +++ b/resource/ClientScheme.res @@ -6,13 +6,6 @@ Scheme { - //////////////////////// CUSTOM FONT FILES ///////////////////////////// - // specifies all the custom (non-system) font files that need to be loaded to service the above described fonts - // Range specificies the characters to be used from the custom font before falling back to a default font - // characters in the range not specificed in the font will appear empty - // For TF2: Any special character will need to be added to our font file - //////////////////////////////////////////////////////////////////////// - CustomFontFiles { "1" "resource/tf.ttf" @@ -21,61 +14,24 @@ Scheme { "font" "resource/TF2.ttf" "name" "TF2" - "russian" - { - "range" "0x0000 0xFFFF" - } - "polish" - { - "range" "0x0000 0xFFFF" - } } "4" { "font" "resource/TF2Secondary.ttf" "name" "TF2 Secondary" - "russian" - { - "range" "0x0000 0xFFFF" - } - "polish" - { - "range" "0x0000 0xFFFF" - } } "5" { "font" "resource/TF2Professor.ttf" "name" "TF2 Professor" - "russian" - { - "range" "0x0000 0x00FF" - } - "polish" - { - "range" "0x0000 0x00FF" - } } "6" { "font" "resource/TF2Build.ttf" "name" "TF2 Build" - "russian" - { - "range" "0x0000 0xFFFF" - } - "polish" - { - "range" "0x0000 0xFFFF" - } - "turkish" - { - "range" "0x0000 0xFFFF" - } } - "7" // Main font + "7" { - "font" "resource/fonts/Cerbetica.ttf" "name" "Cerbetica" } @@ -85,37 +41,27 @@ Scheme "font" "resource/fonts/Blocks.ttf" "name" "Blocks" } - "9" // Fog's xHairs - { - "font" "resource/fonts/crosshairs.ttf" - "name" "Crosshairs" - } - "10" // Thin Cross - { - "font" "resource/fonts/Symbol.ttf" - "name" "Symbol" - } - "11" // Konr Wings - { - "font" "resource/fonts/Garm3nFont.ttf" - "name" "Garm3nFont" - } - "12" // Edited font for TargetIDs, menus, etc. + "9" { "font" "resource/fonts/Cerbetica_edited.ttf" "name" "Cerbetica_edited" } - "13" // Cerbetica bolded, for ammo/health, etc. + "10" { "font" "resource/fonts/Cerbetica_bold.ttf" "name" "Cerbetica Bold" } - "14" // Used for main menu icons + "11" { "font" "resource/fonts/heydings_icons.ttf" "name" "Heydings Icons" } + "12" + { + "font" "resource/fonts/KnucklesCrosses.ttf" + "name" "KnucklesCrosses" + } } }
\ No newline at end of file diff --git a/resource/GameMenu.res b/resource/GameMenu.res index 387e518..67b0a61 100644 --- a/resource/GameMenu.res +++ b/resource/GameMenu.res @@ -1,75 +1,77 @@ -"GameMenu" [$WIN32] +"GameMenu" { - "ServerBrowserButton" - { - "label" "Servers" - "command" "OpenServerBrowser" - "subimage" "" - "OnlyAtMenu" "0" - } + // MAIN MENU "CharacterSetupButton" { - "label" "Items" - "command" "engine open_charinfo" - "subimage" "" + "label" "Inventory" + "command" "engine open_charinfo" + "subimage" "" } "GeneralStoreButton" { - "label" "Shop" - "command" "engine open_store" - "subimage" "" + "label" "Mann Co. Store" + "command" "engine open_store" + "subimage" "" } "ReplayBrowserButton" { - "label" "Replays" - "command" "engine replay_reloadbrowser" - "subimage" "" + "label" "Replay" + "command" "engine replay_reloadbrowser" + "subimage" "" + } + "SettingsButton" + { + "label" "Options" + "command" "OpenOptionsDialog" + } + "TF2SettingsButton" + { + "label" "Adv. Options" + "command" "opentf2options" } - //SettingsButton - //TF2SettingsButton - //MinmodeToggle - + "CreateServerButton" { "label" "" "command" "OpenCreateMultiplayerGameDialog" "tooltip" "Create Server" } - "ReportBugButton" - { - "label" "" - "command" "engine bug" - "tooltip" "Report Bug" - } "AchievementsButton" { "label" "" "command" "OpenAchievementsDialog" + "subimage" "glyph_achievements" "tooltip" "Achievements" } - + "ReportBugButton" + { + "label" "" + "command" "engine bug" + "subimage" "glyph_bug" + "tooltip" "Report Bug" + } "CallVoteButton" { "label" "" "command" "callvote" - "OnlyInGame" "1" "subimage" "icon_checkbox" "tooltip" "Call Vote" + "OnlyInGame" "1" } "MutePlayersButton" { "label" "" "command" "OpenPlayerListDialog" - "OnlyInGame" "1" "subimage" "glyph_muted" "tooltip" "Mute Player" + "OnlyInGame" "1" } "ReportPlayerButton" { "label" "" "command" "OpenReportPlayerDialog" - "OnlyInGame" "1" - "subimage" "glyph_alert" + "subimage" "glyph_commentary" "tooltip" "Report Player" + "OnlyInGame" "1" } }
\ No newline at end of file diff --git a/resource/fonts/Garm3nFont.ttf b/resource/fonts/Garm3nFont.ttf Binary files differdeleted file mode 100644 index 54af19a..0000000 --- a/resource/fonts/Garm3nFont.ttf +++ /dev/null diff --git a/resource/fonts/KnucklesCrosses.ttf b/resource/fonts/KnucklesCrosses.ttf Binary files differnew file mode 100644 index 0000000..a7f7792 --- /dev/null +++ b/resource/fonts/KnucklesCrosses.ttf diff --git a/resource/fonts/Symbol.ttf b/resource/fonts/Symbol.ttf Binary files differdeleted file mode 100644 index fd1c033..0000000 --- a/resource/fonts/Symbol.ttf +++ /dev/null diff --git a/resource/fonts/crosshairs.ttf b/resource/fonts/crosshairs.ttf Binary files differdeleted file mode 100644 index 7a582ad..0000000 --- a/resource/fonts/crosshairs.ttf +++ /dev/null diff --git a/resource/scheme/clientscheme_colors.res b/resource/scheme/clientscheme_colors.res index df41f5a..ff1f3e7 100644 --- a/resource/scheme/clientscheme_colors.res +++ b/resource/scheme/clientscheme_colors.res @@ -41,6 +41,10 @@ Scheme "Heal Numbers" "48 255 48 255" "Damage Numbers" "72 255 255 255" + //crosshair colors + "Crosshair" "242 242 242 255" + "CrosshairDamage" "255 0 0 255" + //'Last DamageHeal Info' refers to the number that appears above hp "Last DamageHeal Info" "72 255 255 255" diff --git a/resource/scheme/clientscheme_xhairs.res b/resource/scheme/clientscheme_xhairs.res index 3e84998..64e019d 100644 --- a/resource/scheme/clientscheme_xhairs.res +++ b/resource/scheme/clientscheme_xhairs.res @@ -2,273 +2,884 @@ Scheme { Fonts { - "xHairCircle" + "size:10,outline:off" { "1" { - "name" "Courier New" - "tall" "72" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "10" + "antialias" "1" + "additive" "0" + "outline" "0" } } - - "xHairCircleOutline" + "size:11,outline:off" { "1" { - "name" "Courier New" - "tall" "72" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "11" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:12,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "12" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:13,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "13" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:14,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "14" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:15,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "15" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:16,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "16" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:17,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "17" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:18,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "18" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:19,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "19" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:20,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "20" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:21,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "21" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:22,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "22" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:23,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "23" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:24,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "24" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:25,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "25" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:26,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "26" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:27,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "26" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:28,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "28" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:29,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "29" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:30,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "30" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:31,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "31" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:32,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "32" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:33,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "33" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:34,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "34" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:35,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "35" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:36,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "36" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:37,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "37" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:38,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "38" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:39,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "39" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:40,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "40" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:41,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "41" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:42,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "42" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:43,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "43" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:44,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "44" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:45,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "45" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:46,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "46" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:47,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "47" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:48,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "48" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:49,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "49" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:50,outline:off" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "50" + "antialias" "1" + "additive" "0" + "outline" "0" + } + } + "size:12,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "12" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:13,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "13" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:14,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "14" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:15,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "15" + "antialias" "0" + "additive" "0" "outline" "1" } } - - "Crosshairs8" + "size:16,outline:on" { "1" { - "name" "Crosshairs" - "tall" "8" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "16" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs10" + "size:17,outline:on" { "1" { - "name" "Crosshairs" - "tall" "10" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "17" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs12" + "size:18,outline:on" { "1" { - "name" "Crosshairs" - "tall" "12" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "18" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs14" + "size:19,outline:on" { "1" { - "name" "Crosshairs" - "tall" "14" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "19" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs16" + "size:20,outline:on" { "1" { - "name" "Crosshairs" - "tall" "16" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "20" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs18" + "size:21,outline:on" { "1" { - "name" "Crosshairs" - "tall" "18" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "21" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "CrosshairsOutline18" + "size:22,outline:on" { "1" { - "name" "Crosshairs" - "tall" "18" - "weight" "0" - "antialias" "1" - "outline" "1" + "name" "KnucklesCrosses" + "tall" "22" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs20" + "size:23,outline:on" { "1" { - "name" "Crosshairs" - "tall" "20" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "23" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs22" + "size:24,outline:on" { "1" { - "name" "Crosshairs" - "tall" "22" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "24" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs24" + "size:25,outline:on" { "1" { - "name" "Crosshairs" - "tall" "24" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "25" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "CrosshairsOutline24" + "size:26,outline:on" { "1" { - "name" "Crosshairs" - "tall" "24" - "weight" "0" - "antialias" "1" - "outline" "1" + "name" "KnucklesCrosses" + "tall" "26" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs26" + "size:27,outline:on" { "1" { - "name" "Crosshairs" - "tall" "26" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "26" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "CrosshairsOutline26" + "size:28,outline:on" { "1" { - "name" "Crosshairs" - "tall" "26" - "weight" "0" - "antialias" "1" - "outline" "1" + "name" "KnucklesCrosses" + "tall" "28" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs28" + "size:29,outline:on" { "1" { - "name" "Crosshairs" - "tall" "28" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "29" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs30" + "size:30,outline:on" { "1" { - "name" "Crosshairs" - "tall" "30" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "30" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs32" + "size:31,outline:on" { "1" { - "name" "Crosshairs" - "tall" "32" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "31" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "CrosshairsOutline32" + "size:32,outline:on" { "1" { - "name" "Crosshairs" - "tall" "32" - "weight" "0" - "antialias" "1" - "outline" "1" + "name" "KnucklesCrosses" + "tall" "32" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs34" + "size:33,outline:on" { "1" { - "name" "Crosshairs" - "tall" "34" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "33" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "CrosshairsOutline34" + "size:34,outline:on" { "1" { - "name" "Crosshairs" - "tall" "34" - "weight" "0" - "antialias" "1" - "outline" "1" + "name" "KnucklesCrosses" + "tall" "34" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs36" + "size:35,outline:on" { "1" { - "name" "Crosshairs" - "tall" "36" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "35" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs38" + "size:36,outline:on" { "1" { - "name" "Crosshairs" - "tall" "38" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "36" + "antialias" "0" + "additive" "0" + "outline" "1" } } - - "Crosshairs40" + "size:37,outline:on" { "1" { - "name" "Crosshairs" - "tall" "40" - "weight" "0" - "antialias" "1" + "name" "KnucklesCrosses" + "tall" "37" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:38,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "38" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:39,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "39" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:40,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "40" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:41,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "41" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:42,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "42" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:43,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "43" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:44,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "44" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:45,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "45" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:46,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "46" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:47,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "47" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:48,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "48" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:49,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "49" + "antialias" "0" + "additive" "0" + "outline" "1" + } + } + "size:50,outline:on" + { + "1" + { + "name" "KnucklesCrosses" + "tall" "50" + "antialias" "0" + "additive" "0" + "outline" "1" } } } diff --git a/resource/ui/HudItemEffectMeter.res b/resource/ui/HudItemEffectMeter.res index 4939735..947ee93 100644 --- a/resource/ui/HudItemEffectMeter.res +++ b/resource/ui/HudItemEffectMeter.res @@ -6,7 +6,7 @@ "visible" "1"
"enabled" "1"
"xpos" "c-75"
- "ypos" "c127"
+ "ypos" "c123"
"ypos_minmode" "c60"
"wide" "500"
"tall" "500"
diff --git a/resource/ui/HudItemEffectMeter_Cleaver.res b/resource/ui/HudItemEffectMeter_Cleaver.res index d15e7f7..a920167 100644 --- a/resource/ui/HudItemEffectMeter_Cleaver.res +++ b/resource/ui/HudItemEffectMeter_Cleaver.res @@ -6,7 +6,7 @@ "visible" "1"
"enabled" "1"
"xpos" "c-75"
- "ypos" "c124"
+ "ypos" "c103"
"ypos_minmode" "c53"
"wide" "500"
"tall" "500"
diff --git a/resource/ui/HudItemEffectMeter_Demoman.res b/resource/ui/HudItemEffectMeter_Demoman.res index 0b4bb82..c061b1d 100644 --- a/resource/ui/HudItemEffectMeter_Demoman.res +++ b/resource/ui/HudItemEffectMeter_Demoman.res @@ -5,8 +5,8 @@ "fieldName" "HudItemEffectMeter"
"visible" "1"
"enabled" "1"
- "xpos" "c-75"
- "ypos" "367"
+ "xpos" "c122"
+ "ypos" "374"
"xpos_minmode" "c-125"
"ypos_minmode" "315"
"wide" "500"
diff --git a/resource/ui/HudItemEffectMeter_Engineer.res b/resource/ui/HudItemEffectMeter_Engineer.res index c60d689..c5bb61e 100644 --- a/resource/ui/HudItemEffectMeter_Engineer.res +++ b/resource/ui/HudItemEffectMeter_Engineer.res @@ -5,8 +5,8 @@ "fieldName" "HudItemEffectMeter"
"visible" "1"
"enabled" "1"
- "xpos" "c-75"
- "ypos" "391"
+ "xpos" "c122"
+ "ypos" "374"
"ypos_minmode" "338"
"wide" "500"
"tall" "500"
diff --git a/resource/ui/HudItemEffectMeter_Heavy.res b/resource/ui/HudItemEffectMeter_Heavy.res index 3b462a9..5960a7b 100644 --- a/resource/ui/HudItemEffectMeter_Heavy.res +++ b/resource/ui/HudItemEffectMeter_Heavy.res @@ -5,8 +5,8 @@ "fieldName" "HudItemEffectMeter" "visible" "1" "enabled" "1" - "xpos" "c-75" - "ypos" "c124" + "xpos" "c-75" + "ypos" "c113" "ypos_minmode" "c53" "wide" "500" "tall" "500" diff --git a/resource/ui/HudItemEffectMeter_ParticleCannon.res b/resource/ui/HudItemEffectMeter_ParticleCannon.res index 134b0f2..229d4da 100644 --- a/resource/ui/HudItemEffectMeter_ParticleCannon.res +++ b/resource/ui/HudItemEffectMeter_ParticleCannon.res @@ -6,7 +6,7 @@ "visible" "1"
"enabled" "1"
"xpos" "c-75" [$WIN32]
- "ypos" "c111" [$WIN32]
+ "ypos" "c113" [$WIN32]
"ypos_minmode" "c46" [$WIN32]
"wide" "500"
"tall" "500"
diff --git a/resource/ui/HudItemEffectMeter_Pomson.res b/resource/ui/HudItemEffectMeter_Pomson.res index 685dc14..a16f42a 100644 --- a/resource/ui/HudItemEffectMeter_Pomson.res +++ b/resource/ui/HudItemEffectMeter_Pomson.res @@ -6,7 +6,7 @@ "visible" "1"
"enabled" "1"
"xpos" "c-75"
- "ypos" "c111"
+ "ypos" "c113"
"ypos_minmode" "c46"
"wide" "500"
"tall" "500"
diff --git a/resource/ui/HudItemEffectMeter_Raygun.res b/resource/ui/HudItemEffectMeter_Raygun.res index bbc5477..7283c92 100644 --- a/resource/ui/HudItemEffectMeter_Raygun.res +++ b/resource/ui/HudItemEffectMeter_Raygun.res @@ -6,7 +6,7 @@ "visible" "1"
"enabled" "1"
"xpos" "c-75"
- "ypos" "c124"
+ "ypos" "c123"
"ypos_minmode" "c54"
"wide" "500"
"tall" "500"
diff --git a/resource/ui/HudItemEffectMeter_Sapper.res b/resource/ui/HudItemEffectMeter_Sapper.res index c3ddfa3..a4538da 100644 --- a/resource/ui/HudItemEffectMeter_Sapper.res +++ b/resource/ui/HudItemEffectMeter_Sapper.res @@ -6,7 +6,7 @@ "visible" "1" "enabled" "1" "xpos" "c-75" - "ypos" "c124" + "ypos" "c103" "ypos_minmode" "c53" "wide" "500" "tall" "500" diff --git a/resource/ui/HudItemEffectMeter_Scout.res b/resource/ui/HudItemEffectMeter_Scout.res index 969c3cd..847d1f8 100644 --- a/resource/ui/HudItemEffectMeter_Scout.res +++ b/resource/ui/HudItemEffectMeter_Scout.res @@ -6,7 +6,7 @@ "visible" "1"
"enabled" "1"
"xpos" "c-75"
- "ypos" "c124"
+ "ypos" "c103"
"ypos_minmode" "c53"
"wide" "500"
"tall" "500"
diff --git a/resource/ui/HudItemEffectMeter_Sniper.res b/resource/ui/HudItemEffectMeter_Sniper.res index b064e61..289fa65 100644 --- a/resource/ui/HudItemEffectMeter_Sniper.res +++ b/resource/ui/HudItemEffectMeter_Sniper.res @@ -5,10 +5,8 @@ "fieldName" "HudItemEffectMeter"
"visible" "1"
"enabled" "1"
- "xpos" "c-75"
- "ypos" "367"
- "xpos_minmode" "c-125"
- "ypos_minmode" "315"
+ "xpos" "c115"
+ "ypos" "374"
"wide" "500"
"tall" "500"
"MeterFG" "White"
diff --git a/resource/ui/HudItemEffectMeter_SodaPopper.res b/resource/ui/HudItemEffectMeter_SodaPopper.res index 438cf69..7fe92ed 100644 --- a/resource/ui/HudItemEffectMeter_SodaPopper.res +++ b/resource/ui/HudItemEffectMeter_SodaPopper.res @@ -6,7 +6,7 @@ "visible" "1"
"enabled" "1"
"xpos" "c-75"
- "ypos" "c111"
+ "ypos" "c113"
"ypos_minmode" "c46"
"wide" "500"
"tall" "500"
diff --git a/resource/ui/HudItemEffectMeter_Spy.res b/resource/ui/HudItemEffectMeter_Spy.res index d48f298..606cdfc 100644 --- a/resource/ui/HudItemEffectMeter_Spy.res +++ b/resource/ui/HudItemEffectMeter_Spy.res @@ -5,8 +5,8 @@ "fieldName" "HudItemEffectMeter"
"visible" "1"
"enabled" "1"
- "xpos" "c-75"
- "ypos" "367"
+ "xpos" "c122"
+ "ypos" "374"
"xpos_minmode" "c-125"
"ypos_minmode" "315"
"wide" "500"
diff --git a/resource/ui/HudItemEffectMeter_SpyKnife.res b/resource/ui/HudItemEffectMeter_SpyKnife.res index ff4e488..57bc24a 100644 --- a/resource/ui/HudItemEffectMeter_SpyKnife.res +++ b/resource/ui/HudItemEffectMeter_SpyKnife.res @@ -5,8 +5,8 @@ "fieldName" "HudItemEffectMeter"
"visible" "1"
"enabled" "1"
- "xpos" "c-75"
- "ypos" "c124"
+ "xpos" "c-75"
+ "ypos" "c113"
"ypos_minmode" "c53"
"wide" "500"
"tall" "500"
diff --git a/resource/ui/MainMenuOverride.res b/resource/ui/MainMenuOverride.res index 9a8c89a..c710f51 100644 --- a/resource/ui/MainMenuOverride.res +++ b/resource/ui/MainMenuOverride.res @@ -12,7 +12,7 @@ "tall" "f0" // "bgcolor_override" "0 0 0 100" - + "update_url" "http://store.steampowered.com/news/?filter=updates&appids=440" "blog_url" "http://www.teamfortress.com/" @@ -61,7 +61,7 @@ "image_drawcolor" "TanLight" "image_armedcolor" "Button Color" "image_depressedcolor" "Button Color" - + "SubImage" { "ControlName" "ImagePanel" @@ -74,7 +74,7 @@ "visible" "1" "enabled" "1" "scaleImage" "1" - } + } } } @@ -174,18 +174,32 @@ "tall" "480" "visible" "0" "enabled" "1" - "fillcolor" "40 40 40 0" + "scaleImage" "1" + "proportionaltoparent" "1" + "image" "../console/background_upward" + + if_wider + { + "wide" "f0" + "tall" "o0.628" + } + + if_taller + { + "wide" "o1.6" + "tall" "f0" + } } "HudNameBG" { "ControlName" "ImagePanel" "fieldName" "HudNameBG" - "xpos" "5" + "xpos" "30" "ypos" "57" - "zpos" "0" - "wide" "220" - "tall" "25" + "zpos" "-55" + "wide" "260" + "tall" "193" "autoResize" "0" "pinCorner" "0" "visible" "1" @@ -197,7 +211,7 @@ { "ControlName" "CExImageButton" "fieldName" "HudName" - "xpos" "10" + "xpos" "40" "ypos" "58" "zpos" "1" "wide" "56" @@ -251,7 +265,7 @@ "tall" "32" "visible" "0" "enabled" "0" - "image" "../logo/inferno_logo_anim" + "image" "../logo/inferno_logo_anim" "scaleImage" "1" "mouseinputenabled" "0" } @@ -283,11 +297,11 @@ { "ControlName" "CPvPRankPanel" "fieldName" "RankModelPanel" - "xpos" "cs-0.5-370" - "ypos" "cs-0.5+50" + "xpos" "130" + "ypos" "cs-0.5-17" "zpos" "-51" - "wide" "1000" + "wide" "170" "tall" "1000" "visible" "1" "proportionaltoparent" "1" @@ -302,10 +316,10 @@ { "ControlName" "CPvPRankPanel" "fieldName" "RankPanel" - "xpos" "c-460" - "ypos" "240" - "zpos" "-52" - "wide" "320" + "xpos" "30" + "ypos" "205" + "zpos" "-51" + "wide" "170" "tall" "100" "visible" "1" "proportionaltoparent" "1" @@ -319,16 +333,16 @@ "TooltipPanel" { - "ControlName" "EditablePanel" - "fieldName" "TooltipPanel" - "xpos" "0" - "ypos" "0" - "zpos" "10000" - "wide" "150" - "tall" "50" - "visible" "0" + "ControlName" "EditablePanel" + "fieldName" "TooltipPanel" + "xpos" "0" + "ypos" "0" + "zpos" "10000" + "wide" "150" + "tall" "50" + "visible" "0" "PaintBackgroundType" "2" - "border" "MainMenuBGBorder" + "border" "MainMenuBGBorder" "TipSubLabel" { @@ -371,11 +385,11 @@ } } - "QuestLogButton" + "QuestLogButtonNew" { "ControlName" "EditablePanel" - "fieldName" "QuestLogButton" - "xpos" "85" + "fieldName" "QuestLogButtonNew" + "xpos" "123" "ypos" "58" "zpos" "10" "wide" "20" @@ -439,7 +453,7 @@ "proportionaltoparent" "1" "mouseinputenabled" "0" "keyboardinputenabled" "0" - } + } } } @@ -447,7 +461,7 @@ { "ControlName" "EditablePanel" "fieldName" "Notifications_ShowButtonPanel" - "xpos" "105" + "xpos" "85" "ypos" "58" "zpos" "10" "wide" "20" @@ -471,7 +485,7 @@ "image" "glyph_achievements" "scaleImage" "1" "drawcolor" "210 125 33 255" - } + } "Notifications_CountLabel" { @@ -509,7 +523,7 @@ "enabled" "1" "fgcolor_override" "TransparentBlack" } - + "Notifications_ShowButtonPanel_SB" { "ControlName" "CExImageButton" @@ -530,7 +544,7 @@ "dulltext" "0" "brighttext" "0" "default" "1" - "actionsignallevel" "2" + "actionsignallevel" "2" "Command" "noti_show" @@ -538,7 +552,7 @@ "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" - + "border_default" "" "border_armed" "" "paintbackground" "0" @@ -578,8 +592,8 @@ "tall" "80" "visible" "0" "PaintBackgroundType" "2" - "paintbackground" "0" - "border" "MainMenuHighlightBorder" + "paintbackground" "0" + "border" "MainMenuHighlightBorder" "Notifications_CloseButton" { @@ -605,8 +619,8 @@ "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" - "Command" "noti_hide" - + "Command" "noti_hide" + "paintbackground" "0" "defaultFgColor_override" "TanLight" @@ -615,6 +629,7 @@ "image_drawcolor" "TanLight" "image_armedcolor" "Button Color" + "SubImage" { "ControlName" "ImagePanel" @@ -685,8 +700,8 @@ "tall" "25" "autoResize" "0" "pinCorner" "3" - "visible" "1" - "enabled" "1" + "visible" "0" + "enabled" "0" "MOTD_ShowButtonPanel_SB" { @@ -736,357 +751,91 @@ } } } - + "MOTD_Panel" { "ControlName" "EditablePanel" "fieldName" "MOTD_Panel" - "xpos" "300" - "ypos" "90" - "zpos" "1" - "wide" "300" - "tall" "360" + "xpos" "0" + "ypos" "0" + "zpos" "0" + "wide" "0" + "tall" "0" "visible" "0" "PaintBackgroundType" "2" - "paintbackground" "1" - "border" "NoBorder" - "bgcolor_override" "25 25 25 230" - - "MOTD_HeaderContainer" + "paintbackground" "0" + "border" "" + } + + "CreateServerButton" + { + "ControlName" "EditablePanel" + "fieldname" "CreateServerButton" + "xpos" "145" + "ypos" "58" + "zpos" "12" + "wide" "20" + "tall" "25" + "visible" "1" + + "SubButton" { - "ControlName" "EditablePanel" - "fieldName" "MOTD_HeaderContainer" + "ControlName" "CExImageButton" + "fieldName" "SubButton" "xpos" "0" "ypos" "0" - "wide" "300" - "tall" "22" - "visible" "1" - - "MOTD_HeaderLabel" - { - "ControlName" "CExLabel" - "fieldName" "MOTD_HeaderLabel" - "font" "HudFontSmallBold" - "textAlignment" "center" - "labelText" "%motdheader%" - "xpos" "0" - "ypos" "0" - "wide" "300" - "tall" "24" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "fgcolor_override" "TanLight" - "bgcolor_override" "25 25 25 255" - } - } - - "MOTD_CloseButton" - { - "ControlName" "CExImageButton" - "fieldName" "MOTD_CloseButton" - "xpos" "282" - "ypos" "4" - "zpos" "10" - "wide" "14" - "tall" "14" + "wide" "20" + "tall" "20" "autoResize" "0" - "pinCorner" "0" + "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" - "labeltext" "X" + "textinsetx" "100" + "use_proportional_insets" "1" "font" "CerbeticaBold16" - "textAlignment" "center" + "textAlignment" "west" "dulltext" "0" - "actionsignallevel" "2" "brighttext" "0" - "default" "0" + + "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" - "Command" "motd_hide" + "border_default" "" + "border_armed" "" "paintbackground" "0" - //"defaultFgColor_override" "235 226 202 255" - //"armedFgColor_override" "46 43 42 255" "defaultFgColor_override" "TanLight" - "armedFgColor_override" "Base Color" - "depressedFgColor_override" "Base Color" - - "image_drawcolor" "235 226 202 255" - "image_armedcolor" "200 80 60 255" - } - - "MOTD_HeaderIcon" - { - "ControlName" "ImagePanel" - "fieldName" "MOTD_HeaderIcon" - "xpos" "9999" - "ypos" "9999" - "zpos" "100" - "wide" "25" - "tall" "25" - "visible" "0" - "enabled" "1" - "image" "class_icons/filter_all_motd" - "scaleImage" "1" - } - - "MOTD_TitleLabel" - { - "ControlName" "CExLabel" - "fieldName" "MOTD_TitleLabel" - "font" "HudFontSmallBold" - "labelText" "%motdtitle%" - "textAlignment" "west" - "xpos" "10" - "ypos" "25" - "wide" "250" - "tall" "15" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "fgcolor_override" "TanLight" - "wrap" "1" - } - - "MOTD_Label" - { - "ControlName" "CExLabel" - "fieldName" "MOTD_Label" - "font" "HudFontSmall" - "labelText" "%motddate%" - "textAlignment" "north-west" - "xpos" "10" - "ypos" "40" - "wide" "300" - "tall" "15" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "fgcolor_override" "TanLight" - } - - "MOTD_TitleImageBg" - { - "ControlName" "ImagePanel" - "fieldName" "MOTD_TitleImageBg" - "xpos" "10" - "ypos" "55" - "zpos" "99" - "wide" "280" - "tall" "180" - "visible" "1" - "enabled" "1" - "image" "item_bg" - "scaleImage" "1" - } - - "MOTD_TitleImageContainer" - { - "ControlName" "EditablePanel" - "fieldName" "MOTD_TitleImageContainer" - "xpos" "10" - "ypos" "55" - "zpos" "100" - "wide" "280" - "tall" "180" - "visible" "1" - "border" "NoBorder" - - "MOTD_TitleImage" - { - "ControlName" "ImagePanel" - "fieldName" "MOTD_TitleImage" - "xpos" "0" - "ypos" "0" - "zpos" "100" - "wide" "280" - "tall" "280" - "visible" "1" - "enabled" "1" - "image" "class_icons/filter_all" - "scaleImage" "0" - } - } - - "MOTD_TextScroller" - { - "ControlName" "ScrollableEditablePanel" - "fieldName" "MOTD_TextScroller" - "xpos" "20" - "ypos" "240" - "wide" "280" - "tall" "95" - "PaintBackgroundType" "2" - "fgcolor_override" "Base Color" - - "MOTD_TextPanel" - { - "ControlName" "EditablePanel" - "fieldName" "MOTD_TextPanel" - "xpos" "0" - "ypos" "0" - "wide" "250" - "tall" "300" - "visible" "1" - "PaintBackgroundType" "2" - - "MOTD_TextLabel" - { - "ControlName" "CExLabel" - "fieldName" "MOTD_TextLabel" - "font" "HudFontSmall" - "labelText" "%motdtext%" - "textAlignment" "north-west" - "xpos" "0" - "ypos" "0" - "wide" "250" - "tall" "300" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "fgcolor_override" "TanLight" - "wrap" "1" - } - } - } - - "MOTD_URLButton" - { - "ControlName" "CExButton" - "fieldName" "MOTD_URLButton" - "xpos" "75" - "ypos" "339" - "wide" "150" - "tall" "15" - "autoResize" "0" - "pinCorner" "3" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#MMenu_MOTD_URL" - "textinsetx" "20" - "use_proportional_insets" "1" - "font" "HudFontSmallestBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "command" "motd_viewurl" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - - "defaultBgColor_override" "25 25 25 255" - "armedBgColor_override" "35 35 35 255" - "depressedBgColor_override" "25 25 25 255" - - "defaultFgColor_override" "TanLight" - "armedFgColor_override" "TanLight" - "depressedFgColor_override" "TanDark" - - "border_default" "NoBorder" - "border_armed" "NoBorder" - } - - "MOTD_PrevButton" - { - "ControlName" "CExImageButton" - "fieldName" "MOTD_PrevButton" - "xpos" "12" - "ypos" "336" - "zpos" "1" - "wide" "20" - "tall" "20" - "autoResize" "0" - "pinCorner" "3" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "motd_prev" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "paintbackground" "0" + "armedFgColor_override" "Button Color" + "depressedFgColor_override" "Button Color" "image_drawcolor" "235 226 202 255" - "image_armedcolor" "255 255 255 255" - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "1" - "wide" "20" - "tall" "20" - "visible" "1" - "enabled" "1" - "image" "blog_back" - "scaleImage" "1" - } - } - - "MOTD_NextButton" - { - "ControlName" "CExImageButton" - "fieldName" "MOTD_NextButton" - "xpos" "267" - "ypos" "336" - "zpos" "1" - "wide" "20" - "tall" "20" - "autoResize" "0" - "pinCorner" "3" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "motd_next" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "paintbackground" "0" + "image_armedcolor" "72 255 255 255" - "image_drawcolor" "235 226 202 255" - "image_armedcolor" "255 255 255 255" "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" + "xpos" "4" + "ypos" "7" "zpos" "1" - "wide" "20" - "tall" "20" + "wide" "12" + "tall" "12" "visible" "1" "enabled" "1" - "image" "blog_forward" + "image" "glyph_create" "scaleImage" "1" } } } - "CreateServerButton" + "ReportBugButton" { "ControlName" "EditablePanel" - "fieldname" "CreateServerButton" - "xpos" "145" - "ypos" "58" + "fieldname" "ReportBugButton" + "xpos" "164" + "ypos" "59" "zpos" "12" "wide" "20" "tall" "25" @@ -1107,11 +856,10 @@ "tabPosition" "0" "textinsetx" "100" "use_proportional_insets" "1" - "font" "CerbeticaBold16" + "font" "HudFontSmallBold" "textAlignment" "west" "dulltext" "0" "brighttext" "0" - "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" @@ -1119,6 +867,7 @@ "border_default" "" "border_armed" "" "paintbackground" "0" + "Command" "engine bug" "defaultFgColor_override" "TanLight" "armedFgColor_override" "Button Color" @@ -1132,24 +881,24 @@ "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "4" - "ypos" "7" + "ypos" "4" "zpos" "1" - "wide" "12" - "tall" "12" + "wide" "14" + "tall" "14" "visible" "1" "enabled" "1" - "image" "glyph_create" + "image" "glyph_bug" "scaleImage" "1" } } } - "ReportBugButton" + "AchievementsButton" { "ControlName" "EditablePanel" - "fieldname" "ReportBugButton" - "xpos" "165" - "ypos" "58" + "fieldname" "AchievementsButton" + "xpos" "184" + "ypos" "59" "zpos" "12" "wide" "20" "tall" "25" @@ -1207,56 +956,12 @@ } } - "AchievementsButton" - { - "ControlName" "CExImageButton" - "fieldName" "AchievementsButton" - "xpos" "185" - "ypos" "58" - "zpos" "3" - "wide" "20" - "tall" "25" - "autoResize" "0" - "pinCorner" "3" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "" - "paintbackground""0" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "OpenAchievementsDialog" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "border_default" "" - - "image_drawcolor" "235 226 202 255" - "image_armedcolor" "72 255 255 255" - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "4" - "ypos" "7" - "zpos" "1" - "wide" "12" - "tall" "12" - "visible" "1" - "enabled" "1" - "image" "glyph_achievements" - "scaleImage" "1" - } - } - "WatchStreamButton" { "ControlName" "EditablePanel" "fieldName" "WatchStreamButton" - "xpos" "205" - "ypos" "58" + "xpos" "207" + "ypos" "57" "zpos" "1" "wide" "32" "tall" "32" @@ -1290,10 +995,10 @@ "dulltext" "0" "brighttext" "0" "default" "1" - + "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" - + "actionsignallevel" "2" "proportionaltoparent" "1" @@ -1303,7 +1008,7 @@ "defaultFgColor_override" "TanLight" "armedFgColor_override" "Button Color" "depressedFgColor_override" "Button Color" - + "image_drawcolor" "235 226 202 255" "image_armedcolor" "72 255 255 255" @@ -1324,7 +1029,7 @@ "proportionaltoparent" "1" "mouseinputenabled" "0" "keyboardinputenabled" "0" - } + } } } @@ -1341,7 +1046,6 @@ "PaintBackgroundType" "0" "paintbackground" "2" "bgcolor_override" "25 25 25 230" - "border" "NoBorde" "navDown" "SettingsButton" // when a sub element can't nav down it will pass through this @@ -1381,18 +1085,18 @@ "default" "1" "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" - + "border_default" "" "border_armed" "" "paintbackground" "0" - + "defaultFgColor_override" "TanLight" "armedFgColor_override" "Button Color" "depressedFgColor_override" "Button Color" - + "image_drawcolor" "235 226 202 255" "image_armedcolor" "72 255 255 255" - + "SubImage" { "ControlName" "ImagePanel" @@ -1406,7 +1110,7 @@ "enabled" "1" "image" "glyph_create" "scaleImage" "1" - } + } } } @@ -1447,14 +1151,14 @@ "border_default" "" "border_armed" "" "paintbackground" "0" - + "defaultFgColor_override" "TanLight" "armedFgColor_override" "Button Color" "depressedFgColor_override" "Button Color" - + "image_drawcolor" "235 226 202 255" "image_armedcolor" "72 255 255 255" - + "SubImage" { "ControlName" "ImagePanel" @@ -1468,7 +1172,7 @@ "enabled" "1" "image" "glyph_create" "scaleImage" "1" - } + } } } @@ -1476,12 +1180,12 @@ { "ControlName" "EditablePanel" "fieldname" "ReportPlayerButton" - "xpos" "5" - "ypos" "62" + "xpos" "225" + "ypos" "58" "zpos" "12" - "wide" "0" - "tall" "0" - "visible" "0" + "wide" "20" + "tall" "25" + "visible" "1" "SubButton" { @@ -1506,31 +1210,31 @@ "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" - "border_default" "MainMenuMiniButtonDefault" - "border_armed" "MainMenuMiniButtonArmed" + "border_default" "" + "border_armed" "" "paintbackground" "0" - - "defaultFgColor_override" "46 43 42 255" - "armedFgColor_override" "46 43 42 255" - "depressedFgColor_override" "46 43 42 255" - + + "defaultFgColor_override" "TanLight" + "armedFgColor_override" "Button Color" + "depressedFgColor_override" "Button Color" + "image_drawcolor" "235 226 202 255" - "image_armedcolor" "235 226 202 255" - + "image_armedcolor" "72 255 255 255" + "SubImage" { "ControlName" "ImagePanel" "fieldName" "SubImage" "xpos" "4" - "ypos" "4" + "ypos" "7" "zpos" "1" "wide" "12" - "tall" "12" + "tall" "13" "visible" "1" "enabled" "1" - "image" "glyph_alert" + "image" "glyph_create" "scaleImage" "1" - } + } } } @@ -1550,14 +1254,15 @@ { "ControlName" "EditablePanel" "fieldname" "FriendsContainer" - "xpos" "27" - "ypos" "320" + "xpos" "30" + "ypos" "250" "zpos" "5" "wide" "260" - "tall" "150" + "tall" "200" "visible" "1" - "border" "MainMenuBGBorder" + "border" "NoBorder" + "bgcolor_override" "0 0 0 200" "TitleLabel" { @@ -1586,7 +1291,7 @@ "ypos" "rs1-10" "zpos" "501" "wide" "f20" - "tall" "110" + "tall" "160" "visible" "1" "PaintBackgroundType" "0" "proportionaltoparent" "1" @@ -1604,7 +1309,7 @@ "ypos" "rs1-10" "zpos" "500" "wide" "f20" - "tall" "110" + "tall" "160" "visible" "1" "proportionaltoparent" "1" @@ -1662,7 +1367,7 @@ "ypos" "rs1-10" "zpos" "499" "wide" "f20" - "tall" "110" + "tall" "160" "visible" "1" "PaintBackgroundType" "0" "proportionaltoparent" "1" @@ -1672,14 +1377,39 @@ } } - "ServerBrowserButton" + "TFLogoImage" + { + "ControlName" "ImagePanel" + "fieldName" "TFLogoImage" + "xpos" "15" + "ypos" "35" + "wide" "179" + "tall" "45" + "visible" "0" + "enabled" "0" + "image" "../logo/new_tf2_logo" + "command" "engine play vo/heavy_battlecry02.mp3" + "scaleImage" "1" + + if_operation + { + "xpos" "65" + "ypos" "25" + "zpos" "1" + "wide" "o2" + "tall" "105" + "image" "../logo/jungle_inferno_logo" + } + } + + "CharacterSetupButton" { "ControlName" "EditablePanel" - "fieldname" "ServerBrowserButton" - "xpos" "5" + "fieldname" "CharacterSetupButton" + "xpos" "30" "ypos" "82" - "zpos" "11" - "wide" "220" + "zpos" "12" + "wide" "260" "tall" "18" "visible" "1" "PaintBackgroundType" "0" @@ -1689,7 +1419,7 @@ "fieldName" "SubButton" "xpos" "0" "ypos" "0" - "wide" "220" + "wide" "260" "tall" "18" "autoResize" "0" "visible" "1" @@ -1707,15 +1437,15 @@ "border_default" "" "border_armed" "MainMenuTabs" "paintbackground" "1" - + "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanLight" - + "defaultBgColor_override" "0 0 0 0" "armedBgColor_override" "TransparentPanelBG" "depressedBgColor_override" "TransparentPanelBG" - + "image_drawcolor" "117 107 94 255" "image_armedcolor" "235 226 202 255" @@ -1735,14 +1465,14 @@ } } - "CharacterSetupButton" + "GeneralStoreButton" { "ControlName" "EditablePanel" - "fieldname" "CharacterSetupButton" - "xpos" "5" - "ypos" "122" - "zpos" "12" - "wide" "220" + "fieldname" "GeneralStoreButton" + "xpos" "30" + "ypos" "102" + "zpos" "11" + "wide" "260" "tall" "18" "visible" "1" "PaintBackgroundType" "0" @@ -1752,7 +1482,7 @@ "fieldName" "SubButton" "xpos" "0" "ypos" "0" - "wide" "220" + "wide" "260" "tall" "18" "autoResize" "0" "visible" "1" @@ -1798,14 +1528,14 @@ } } - "GeneralStoreButton" + "ReplayBrowserButton" { "ControlName" "EditablePanel" - "fieldname" "GeneralStoreButton" - "xpos" "5" - "ypos" "142" + "fieldname" "ReplayBrowserButton" + "xpos" "30" + "ypos" "122" "zpos" "11" - "wide" "220" + "wide" "260" "tall" "18" "visible" "1" "PaintBackgroundType" "0" @@ -1815,7 +1545,7 @@ "fieldName" "SubButton" "xpos" "0" "ypos" "0" - "wide" "220" + "wide" "260" "tall" "18" "autoResize" "0" "visible" "1" @@ -1860,15 +1590,15 @@ } } } - - "ReplayBrowserButton" + + "SettingsButton" { "ControlName" "EditablePanel" - "fieldname" "ReplayBrowserButton" - "xpos" "5" - "ypos" "162" + "fieldname" "SettingsButton" + "xpos" "30" + "ypos" "142" "zpos" "11" - "wide" "220" + "wide" "260" "tall" "18" "visible" "1" "PaintBackgroundType" "0" @@ -1878,7 +1608,7 @@ "fieldName" "SubButton" "xpos" "0" "ypos" "0" - "wide" "220" + "wide" "260" "tall" "18" "autoResize" "0" "visible" "1" @@ -1924,176 +1654,15 @@ } } - "SettingsButton" - { - "ControlName" "CExImageButton" - "fieldName" "SettingsButton" - "xpos" "5" - "ypos" "182" - "zpos" "1" - "wide" "220" - "tall" "18" - "autoResize" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "Options" - "font" "Cerbetica16" - "textAlignment" "west" - "textinsetx" "24" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "OpenOptionsDialog" - - "border_default" "" - "border_armed" "MainMenuTabs" - "paintbackground" "1" - - "defaultFgColor_override" "TanLight" - "armedFgColor_override" "TanLight" - "depressedFgColor_override" "TanLight" - - "defaultBgColor_override" "0 0 0 0" - "armedBgColor_override" "TransparentPanelBG" - "depressedBgColor_override" "TransparentPanelBG" - - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - - "image_drawcolor" "117 107 94 255" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "16" - "ypos" "6" - "zpos" "1" - "wide" "0" - "tall" "0" - "visible" "1" - "enabled" "1" - "scaleImage" "1" - "image" "glyph_options" - } - } - "TF2SettingsButton" { - "ControlName" "CExImageButton" - "fieldName" "TF2SettingsButton" - "xpos" "5" - "ypos" "202" - "zpos" "1" - "wide" "220" - "tall" "18" - "autoResize" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "Advanced Options" - "font" "Cerbetica16" - "textAlignment" "west" - "textinsetx" "24" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "opentf2options" - - "border_default" "" - "border_armed" "MainMenuTabs" - "paintbackground" "1" - - "defaultFgColor_override" "TanLight" - "armedFgColor_override" "TanLight" - "depressedFgColor_override" "TanLight" - - "defaultBgColor_override" "0 0 0 0" - "armedBgColor_override" "TransparentPanelBG" - "depressedBgColor_override" "TransparentPanelBG" - - "image_drawcolor" "117 107 94 255" - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "16" - "ypos" "6" - "zpos" "1" - "wide" "0" - "tall" "0" - "visible" "1" - "enabled" "1" - "scaleImage" "1" - "image" "glyph_options" - } - } - - "MinmodeToggle" - { - "ControlName" "CExImageButton" - "fieldName" "MinmodeToggle" - "xpos" "5" - "ypos" "222" - "zpos" "1" - "wide" "220" - "tall" "18" - "autoResize" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "font" "Cerbetica16" - "textAlignment" "west" - "labelText" "Minmode Toggle" - "textinsetx" "24" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "engine incrementvar cl_hud_minmode 0 1 1" - - "border_default" "" - "border_armed" "MainMenuTabs" - "paintbackground" "1" - - "defaultFgColor_override" "TanLight" - "armedFgColor_override" "TanLight" - "depressedFgColor_override" "TanLight" - - "defaultBgColor_override" "0 0 0 0" - "armedBgColor_override" "TransparentPanelBG" - "depressedBgColor_override" "TransparentPanelBG" - - "image_drawcolor" "117 107 94 255" - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "16" - "ypos" "6" - "zpos" "1" - "wide" "0" - "tall" "0" - "visible" "1" - "enabled" "1" - "scaleImage" "1" - "image" "glyph_options" - } - } - - "VersionNumber" - { "ControlName" "EditablePanel" - "fieldname" "VersionNumber" - "xpos" "r100" - "ypos" "r20" + "fieldname" "TF2SettingsButton" + "xpos" "30" + "ypos" "162" "zpos" "11" - "wide" "100" - "tall" "20" + "wide" "260" + "tall" "18" "visible" "1" "PaintBackgroundType" "0" "SubButton" @@ -2102,33 +1671,33 @@ "fieldName" "SubButton" "xpos" "0" "ypos" "0" - "wide" "100" - "tall" "20" + "wide" "260" + "tall" "18" "autoResize" "0" - "pinCorner" "3" "visible" "1" "enabled" "1" "tabPosition" "0" - "textinsetx" "6" - "use_proportional_insets" "1" - "font" "Cerbetica14" - "textAlignment" "east" - "labelText" "v2017.10.22" + "font" "Cerbetica16" + "textAlignment" "west" + "textinsetx" "24" "dulltext" "0" "brighttext" "0" "default" "1" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/wooo_tree.wav" + "sound_released" "UI/buttonclickrelease.wav" "border_default" "" - "border_armed" "" - "paintbackground" "0" + "border_armed" "MainMenuTabs" + "paintbackground" "1" "defaultFgColor_override" "TanLight" "armedFgColor_override" "TanLight" "depressedFgColor_override" "TanLight" + "defaultBgColor_override" "0 0 0 0" + "armedBgColor_override" "TransparentPanelBG" + "depressedBgColor_override" "TransparentPanelBG" + "image_drawcolor" "117 107 94 255" "image_armedcolor" "235 226 202 255" @@ -2148,65 +1717,43 @@ } } - "BackgroundFooter" - { - "ControlName" "ImagePanel" - "fieldName" "BackgroundFooter" - "xpos" "9999" - "ypos" "9999" - "zpos" "-50" - "wide" "f0" - "tall" "60" - "visible" "1" - "enabled" "1" - "image" "loadout_bottom_gradient" - "tileImage" "1" - } - - "FooterLine" - { - "ControlName" "ImagePanel" - "fieldName" "FooterLine" - "xpos" "9999" - "ypos" "9999" - "zpos" "-5-" - "wide" "f0" - "tall" "10" - "visible" "1" - "enabled" "1" - "image" "loadout_solid_line" - "scaleImage" "1" - } - - "BackToReplaysButton" + "MinmodeToggle" { "ControlName" "CExImageButton" - "fieldName" "BackToReplaysButton" - "xpos" "c-300" - "ypos" "258" + "fieldName" "MinmodeToggle" + "xpos" "30" + "ypos" "182" "zpos" "1" - "wide" "170" - "tall" "25" + "wide" "260" + "tall" "18" "autoResize" "0" - "pinCorner" "3" - "visible" "0" + "visible" "1" "enabled" "1" "tabPosition" "0" - "labelText" "#GameUI_GameMenu_ExitReplay" - "font" "HudFontSmallBold" + "font" "Cerbetica16" "textAlignment" "west" - "textinsetx" "35" - "use_proportional_insets" "1" + "labelText" "Minmode Toggle" + "textinsetx" "24" "dulltext" "0" "brighttext" "0" "default" "1" - "Command" "exitreplayeditor" - "sound_depressed" "UI/buttonclick.wav" "sound_released" "UI/buttonclickrelease.wav" + "Command" "engine incrementvar cl_hud_minmode 0 1 1" + + "border_default" "" + "border_armed" "MainMenuTabs" + "paintbackground" "1" - "image_drawcolor" "TanLight" - "image_armedcolor" "Button Color" + "defaultFgColor_override" "TanLight" + "armedFgColor_override" "TanLight" + "depressedFgColor_override" "TanLight" + + "defaultBgColor_override" "0 0 0 0" + "armedBgColor_override" "TransparentPanelBG" + "depressedBgColor_override" "TransparentPanelBG" + + "image_drawcolor" "117 107 94 255" "SubImage" { "ControlName" "ImagePanel" @@ -2214,20 +1761,36 @@ "xpos" "16" "ypos" "6" "zpos" "1" - "wide" "14" - "tall" "14" + "wide" "0" + "tall" "0" "visible" "1" "enabled" "1" "scaleImage" "1" - "image" "glyph_quit" - } + "image" "glyph_options" + } + } + + "VersionNumber" + { + "ControlName" "CExLabel" + "fieldname" "VersionNumber" + "font" "Cerbetica14" + "labelText" "v2017.10.28" + "xpos" "r55" + "ypos" "r13" + "wide" "80" + "tall" "10" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fgcolor_override" "White" } "icon_generator" { "ControlName" "CEmbeddedItemModelPanel" "fieldName" "icon_generator" - "xpos" "0" "ypos" "0" "zpos" "1" diff --git a/resource/ui/build_menu/base_selectable.res b/resource/ui/build_menu/base_selectable.res deleted file mode 100644 index 4dab442..0000000 --- a/resource/ui/build_menu/base_selectable.res +++ /dev/null @@ -1,107 +0,0 @@ -"Resource/UI/build_menu/base_selectable.res"
-{
- "MainBackground"
- {
- "ControlName" "CIconPanel"
- "fieldName" "MainBackground"
- "xpos" "3"
- "ypos" "1"
- "zpos" "0"
- "wide" "98"
- "tall" "135"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "hud_menu_item_bg"
- "iconColor" "128 128 128 255"
- }
-
- "ItemNameLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "ItemNameLabel"
- "font" "Default"
- "xpos" "10"
- "ypos" "2"
- "zpos" "1"
- "wide" "84"
- "tall" "15"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "#TF_Empty_Slot"
- "labelText_lodef" "#TF_Empty_Slot"
- "textAlignment" "Left"
- "dulltext" "0"
- "brighttext" "0"
- "fgcolor" "black"
- }
-
- "ItemBackground"
- {
- "ControlName" "CIconPanel"
- "fieldName" "ItemBackground"
- "xpos" "4"
- "ypos" "0"
- "zpos" "0"
- "wide" "98"
- "tall" "135"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "hud_menu_item_bg"
- "iconColor" "ProgressOffWhite"
- }
-
- "BuildingIcon"
- {
- "ControlName" "CIconPanel"
- "fieldName" "BuildingIcon"
- "xpos" "22"
- "ypos" "19"
- "zpos" "2"
- "wide" "56"
- "tall" "56"
- "visible" "0"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "hud_menu_sentry_build"
- "iconColor" "255 255 255 255"
- }
-
- "MetalIcon"
- {
- "ControlName" "CIconPanel"
- "fieldName" "MetalIcon"
- "xpos" "10"
- "ypos" "79"
- "zpos" "1"
- "wide" "10"
- "tall" "10"
- "visible" "0"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "ico_metal"
- "iconColor" "TanDarker"
- }
-
- "CostLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "CostLabel"
- "font" "HudFontSmall"
- "fgcolor" "TanDarker"
- "xpos" "23"
- "ypos" "78"
- "zpos" "1"
- "wide" "84"
- "tall" "13"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "0"
- "enabled" "1"
- "labelText" "%metal%"
- "textAlignment" "Left"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/base_unavailable.res b/resource/ui/build_menu/base_unavailable.res deleted file mode 100644 index cb4389a..0000000 --- a/resource/ui/build_menu/base_unavailable.res +++ /dev/null @@ -1,150 +0,0 @@ -"Resource/UI/build_menu/base_unavailable.res"
-{
- "ItemNameLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "ItemNameLabel"
- "font" "Default"
- "xpos" "6"
- "ypos" "0"
- "zpos" "1"
- "wide" "84"
- "tall" "15"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- "textAlignment" "Left"
- "dulltext" "0"
- "brighttext" "0"
- }
-
- "ItemBackground"
- {
- "ControlName" "CIconPanel"
- "fieldName" "ItemBackground"
- "xpos" "4"
- "ypos" "14"
- "zpos" "0"
- "wide" "98"
- "tall" "105"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "hud_menu_item_bg_outline"
- "iconColor" "ProgressOffWhiteTransparent"
- }
-
- "CantBuildReason"
- {
- "ControlName" "CExLabel"
- "fieldName" "CantBuildReason"
- "font" "Default"
- "xpos" "10"
- "ypos" "48"
- "zpos" "2"
- "wide" "80"
- "tall" "18"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "#Hud_Menu_Build_Unavailable"
- "textAlignment" "Center"
- "dulltext" "0"
- "brighttext" "0"
- }
-
- "MetalIcon"
- {
- "ControlName" "CIconPanel"
- "fieldName" "MetalIcon"
- "xpos" "10"
- "ypos" "18"
- "zpos" "1"
- "wide" "10"
- "tall" "10"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "ico_metal"
- "iconColor" "TanDark"
- }
-
- "CostLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "CostLabel"
- "font" "HudFontSmall"
- "fgcolor" "TanDark"
- "xpos" "23"
- "ypos" "17"
- "zpos" "1"
- "wide" "84"
- "tall" "13"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "%metal%"
- "textAlignment" "Left"
- }
-
- "ModeLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "ModeLabel"
- "font" "DefaultSmall"
- "fgcolor" "TanDark"
- "xpos" "33"
- "ypos" "17"
- "zpos" "1"
- "wide" "44"
- "tall" "13"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" ""
- "textAlignment" "East"
- }
-
- "NumberBg"
- {
- "ControlName" "CIconPanel"
- "fieldName" "NumberBg"
- "xpos" "41"
- "ypos" "99"
- "zpos" "0"
- "wide" "18"
- "tall" "18"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "ico_key_blank"
- "iconColor" "255 255 255 255"
- }
-
- "NumberLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "NumberLabel"
- "font" "HudMenuNumberFont"
- "fgcolor" "Black"
- "xpos" "0"
- "ypos" "98"
- "zpos" "1"
- "wide" "100"
- "tall" "18"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "1"
- "textAlignment" "Center"
- "dulltext" "1"
- "brighttext" "0"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/eureka_target_home_avail.res b/resource/ui/build_menu/eureka_target_home_avail.res deleted file mode 100644 index d660d4a..0000000 --- a/resource/ui/build_menu/eureka_target_home_avail.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_active_teleport_target.res" - -"Resource/UI/build_menu/dispenser_active.res" -{ - "ItemNameLabel" - { - "labelText" "#Hud_Menu_Teleport_Base" - } - - "BuildingIcon" - { - "icon" "eureka_teleport_home" - } - - "NumberLabel" - { - "labelText" "1" - } -}
\ No newline at end of file diff --git a/resource/ui/build_menu/eureka_target_home_unavail.res b/resource/ui/build_menu/eureka_target_home_unavail.res deleted file mode 100644 index e52aa17..0000000 --- a/resource/ui/build_menu/eureka_target_home_unavail.res +++ /dev/null @@ -1,14 +0,0 @@ -#base "base_unavailable_teleport_target.res" - -"Resource/UI/build_menu/dispenser_unavailable.res" -{ - "ItemNameLabel" - { - "labelText" "#Hud_Menu_Teleport_Base" - } - - "NumberLabel" - { - "labelText" "1" - } -}
\ No newline at end of file diff --git a/resource/ui/build_menu/eureka_target_tele_exit_avail.res b/resource/ui/build_menu/eureka_target_tele_exit_avail.res deleted file mode 100644 index fb4d1bd..0000000 --- a/resource/ui/build_menu/eureka_target_tele_exit_avail.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_active_teleport_target.res" - -"Resource/UI/build_menu/tele_exit_active.res" -{ - "ItemNameLabel" - { - "labelText" "#TF_Object_Tele_Exit_360" - } - - "BuildingIcon" - { - "icon" "hud_menu_tele_exit_build" - } - - "NumberLabel" - { - "labelText" "2" - } -}
\ No newline at end of file diff --git a/resource/ui/build_menu/eureka_target_tele_exit_unavail.res b/resource/ui/build_menu/eureka_target_tele_exit_unavail.res deleted file mode 100644 index 2d9f77c..0000000 --- a/resource/ui/build_menu/eureka_target_tele_exit_unavail.res +++ /dev/null @@ -1,14 +0,0 @@ -#base "base_unavailable_teleport_target.res" - -"Resource/UI/build_menu/tele_exit_unavailable.res" -{ - "ItemNameLabel" - { - "labelText" "#TF_Object_tele_exit_360" - } - - "NumberLabel" - { - "labelText" "2" - } -}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/base_selectable.res b/resource/ui/build_menu/pipboy/base_selectable.res deleted file mode 100644 index 2b01137..0000000 --- a/resource/ui/build_menu/pipboy/base_selectable.res +++ /dev/null @@ -1,107 +0,0 @@ -"Resource/UI/build_menu/base_selectable.res"
-{
- "MainBackground"
- {
- "ControlName" "CIconPanel"
- "fieldName" "MainBackground"
- "xpos" "3"
- "ypos" "1"
- "zpos" "0"
- "wide" "98"
- "tall" "135"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "hud_menu_item_bg"
- "iconColor" "128 128 128 255"
- }
-
- "ItemNameLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "ItemNameLabel"
- "font" "Default"
- "xpos" "10"
- "ypos" "2"
- "zpos" "1"
- "wide" "84"
- "tall" "15"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "#TF_Empty_Slot"
- "labelText_lodef" "#TF_Empty_Slot"
- "textAlignment" "Left"
- "dulltext" "0"
- "brighttext" "0"
- "fgcolor" "black"
- }
-
- "ItemBackground"
- {
- "ControlName" "CIconPanel"
- "fieldName" "ItemBackground"
- "xpos" "4"
- "ypos" "0"
- "zpos" "0"
- "wide" "98"
- "tall" "135"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "hud_menu_item_bg"
- "iconColor" "0 0 0 255"
- }
-
- "BuildingIcon"
- {
- "ControlName" "CIconPanel"
- "fieldName" "BuildingIcon"
- "xpos" "22"
- "ypos" "19"
- "zpos" "2"
- "wide" "56"
- "tall" "56"
- "visible" "0"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "hud_menu_sentry_build"
- "iconColor" "255 255 255 255"
- }
-
- "MetalIcon"
- {
- "ControlName" "CIconPanel"
- "fieldName" "MetalIcon"
- "xpos" "10"
- "ypos" "79"
- "zpos" "1"
- "wide" "10"
- "tall" "10"
- "visible" "0"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "ico_metal"
- "iconColor" "TanDarker"
- }
-
- "CostLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "CostLabel"
- "font" "HudFontSmall"
- "fgcolor" "0 255 0 255"
- "xpos" "23"
- "ypos" "78"
- "zpos" "1"
- "wide" "84"
- "tall" "13"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "0"
- "enabled" "1"
- "labelText" "%metal%"
- "textAlignment" "Left"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/base_unavailable.res b/resource/ui/build_menu/pipboy/base_unavailable.res deleted file mode 100644 index e27a8dc..0000000 --- a/resource/ui/build_menu/pipboy/base_unavailable.res +++ /dev/null @@ -1,152 +0,0 @@ -"Resource/UI/build_menu/base_unavailable.res"
-{
- "ItemNameLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "ItemNameLabel"
- "font" "Default"
- "xpos" "6"
- "ypos" "0"
- "zpos" "1"
- "wide" "84"
- "tall" "15"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- "textAlignment" "Left"
- "dulltext" "0"
- "brighttext" "0"
- "fgcolor" "0 255 0 255"
- }
-
- "ItemBackground"
- {
- "ControlName" "CIconPanel"
- "fieldName" "ItemBackground"
- "xpos" "4"
- "ypos" "14"
- "zpos" "0"
- "wide" "98"
- "tall" "105"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "hud_menu_item_bg_outline"
- "iconColor" "0 0 0 255"
- }
-
- "CantBuildReason"
- {
- "ControlName" "CExLabel"
- "fieldName" "CantBuildReason"
- "font" "Default"
- "xpos" "10"
- "ypos" "48"
- "zpos" "2"
- "wide" "80"
- "tall" "18"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "#Hud_Menu_Build_Unavailable"
- "textAlignment" "Center"
- "dulltext" "0"
- "brighttext" "0"
- }
-
- "MetalIcon"
- {
- "ControlName" "CIconPanel"
- "fieldName" "MetalIcon"
- "xpos" "10"
- "ypos" "18"
- "zpos" "1"
- "wide" "10"
- "tall" "10"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "ico_metal"
- "iconColor" "0 255 0 255"
- }
-
- "CostLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "CostLabel"
- "font" "HudFontSmall"
- "fgcolor" "0 255 0 255"
- "xpos" "23"
- "ypos" "17"
- "zpos" "1"
- "wide" "84"
- "tall" "13"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "%metal%"
- "textAlignment" "Left"
- }
-
- "ModeLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "ModeLabel"
- "font" "DefaultSmall"
- "fgcolor" "TanDark"
- "xpos" "33"
- "ypos" "17"
- "zpos" "1"
- "wide" "44"
- "tall" "13"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" ""
- "textAlignment" "East"
- }
-
- "NumberBg"
- {
- "ControlName" "CIconPanel"
- "fieldName" "NumberBg"
- "xpos" "41"
- "ypos" "99"
- "zpos" "0"
- "wide" "18"
- "tall" "18"
- "visible" "1"
- "enabled" "1"
- "scaleImage" "1"
- "icon" "ico_key_blank"
- "iconColor" "0 255 0 255"
- }
-
- "NumberLabel"
- {
- "ControlName" "CExLabel"
- "fieldName" "NumberLabel"
- "font" "HudMenuNumberFont"
- "fgcolor" "Black"
- "xpos" "0"
- "ypos" "98"
- "zpos" "1"
- "wide" "100"
- "tall" "18"
- "autoResize" "0"
- "pinCorner" "0"
- "visible" "1"
- "enabled" "1"
- "labelText" "1"
- "textAlignment" "Center"
- "dulltext" "1"
- "brighttext" "0"
- "fgcolor" "0 255 0 255"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/eureka_target_home_avail.res b/resource/ui/build_menu/pipboy/eureka_target_home_avail.res deleted file mode 100644 index d660d4a..0000000 --- a/resource/ui/build_menu/pipboy/eureka_target_home_avail.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_active_teleport_target.res" - -"Resource/UI/build_menu/dispenser_active.res" -{ - "ItemNameLabel" - { - "labelText" "#Hud_Menu_Teleport_Base" - } - - "BuildingIcon" - { - "icon" "eureka_teleport_home" - } - - "NumberLabel" - { - "labelText" "1" - } -}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/eureka_target_home_unavail.res b/resource/ui/build_menu/pipboy/eureka_target_home_unavail.res deleted file mode 100644 index e52aa17..0000000 --- a/resource/ui/build_menu/pipboy/eureka_target_home_unavail.res +++ /dev/null @@ -1,14 +0,0 @@ -#base "base_unavailable_teleport_target.res" - -"Resource/UI/build_menu/dispenser_unavailable.res" -{ - "ItemNameLabel" - { - "labelText" "#Hud_Menu_Teleport_Base" - } - - "NumberLabel" - { - "labelText" "1" - } -}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/eureka_target_tele_exit_avail.res b/resource/ui/build_menu/pipboy/eureka_target_tele_exit_avail.res deleted file mode 100644 index fb4d1bd..0000000 --- a/resource/ui/build_menu/pipboy/eureka_target_tele_exit_avail.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_active_teleport_target.res" - -"Resource/UI/build_menu/tele_exit_active.res" -{ - "ItemNameLabel" - { - "labelText" "#TF_Object_Tele_Exit_360" - } - - "BuildingIcon" - { - "icon" "hud_menu_tele_exit_build" - } - - "NumberLabel" - { - "labelText" "2" - } -}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/eureka_target_tele_exit_unavail.res b/resource/ui/build_menu/pipboy/eureka_target_tele_exit_unavail.res deleted file mode 100644 index 2d9f77c..0000000 --- a/resource/ui/build_menu/pipboy/eureka_target_tele_exit_unavail.res +++ /dev/null @@ -1,14 +0,0 @@ -#base "base_unavailable_teleport_target.res" - -"Resource/UI/build_menu/tele_exit_unavailable.res" -{ - "ItemNameLabel" - { - "labelText" "#TF_Object_tele_exit_360" - } - - "NumberLabel" - { - "labelText" "2" - } -}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/sentry_active.res b/resource/ui/build_menu/pipboy/sentry_active.res deleted file mode 100644 index 3010ec4..0000000 --- a/resource/ui/build_menu/pipboy/sentry_active.res +++ /dev/null @@ -1,20 +0,0 @@ -#base "base_active.res"
-
-"Resource/UI/build_menu/sentry_active.res"
-{
- "ItemNameLabel"
- {
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- }
-
- "BuildingIcon"
- {
- "icon" "hud_menu_sentry_build"
- }
-
- "NumberLabel"
- {
- "labelText" "1"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/sentry_already_built.res b/resource/ui/build_menu/pipboy/sentry_already_built.res deleted file mode 100644 index 1fc0e65..0000000 --- a/resource/ui/build_menu/pipboy/sentry_already_built.res +++ /dev/null @@ -1,15 +0,0 @@ -#base "base_already_built.res"
-
-"Resource/UI/build_menu/sentry_already_built.res"
-{
- "ItemNameLabel"
- {
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- }
-
- "NumberLabel"
- {
- "labelText" "1"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/sentry_selectable.res b/resource/ui/build_menu/pipboy/sentry_selectable.res deleted file mode 100644 index 924b226..0000000 --- a/resource/ui/build_menu/pipboy/sentry_selectable.res +++ /dev/null @@ -1,15 +0,0 @@ -#base "base_selectable.res"
-
-"Resource/UI/build_menu/sentry_selectable.res"
-{
- "ItemNameLabel"
- {
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- }
-
- "BuildingIcon"
- {
- "icon" "hud_menu_sentry_build"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/sentry_unavailable.res b/resource/ui/build_menu/pipboy/sentry_unavailable.res deleted file mode 100644 index 2bdff80..0000000 --- a/resource/ui/build_menu/pipboy/sentry_unavailable.res +++ /dev/null @@ -1,15 +0,0 @@ -#base "base_unavailable.res"
-
-"Resource/UI/build_menu/sentry_unavailable.res"
-{
- "ItemNameLabel"
- {
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- }
-
- "NumberLabel"
- {
- "labelText" "1"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/pipboy/tele_selectable.res b/resource/ui/build_menu/pipboy/tele_selectable.res deleted file mode 100644 index 4252cef..0000000 --- a/resource/ui/build_menu/pipboy/tele_selectable.res +++ /dev/null @@ -1,14 +0,0 @@ -#base "base_selectable.res"
-
-"Resource/UI/build_menu/tele_selectable.res"
-{
- "ItemNameLabel"
- {
- "labelText" "Teleporter"
- }
-
- "BuildingIcon"
- {
- "icon" "hud_menu_tele_entrance_build"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/sentry_active.res b/resource/ui/build_menu/sentry_active.res deleted file mode 100644 index 3010ec4..0000000 --- a/resource/ui/build_menu/sentry_active.res +++ /dev/null @@ -1,20 +0,0 @@ -#base "base_active.res"
-
-"Resource/UI/build_menu/sentry_active.res"
-{
- "ItemNameLabel"
- {
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- }
-
- "BuildingIcon"
- {
- "icon" "hud_menu_sentry_build"
- }
-
- "NumberLabel"
- {
- "labelText" "1"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/sentry_already_built.res b/resource/ui/build_menu/sentry_already_built.res deleted file mode 100644 index 1fc0e65..0000000 --- a/resource/ui/build_menu/sentry_already_built.res +++ /dev/null @@ -1,15 +0,0 @@ -#base "base_already_built.res"
-
-"Resource/UI/build_menu/sentry_already_built.res"
-{
- "ItemNameLabel"
- {
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- }
-
- "NumberLabel"
- {
- "labelText" "1"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/sentry_selectable.res b/resource/ui/build_menu/sentry_selectable.res deleted file mode 100644 index 924b226..0000000 --- a/resource/ui/build_menu/sentry_selectable.res +++ /dev/null @@ -1,15 +0,0 @@ -#base "base_selectable.res"
-
-"Resource/UI/build_menu/sentry_selectable.res"
-{
- "ItemNameLabel"
- {
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- }
-
- "BuildingIcon"
- {
- "icon" "hud_menu_sentry_build"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/sentry_unavailable.res b/resource/ui/build_menu/sentry_unavailable.res deleted file mode 100644 index 2bdff80..0000000 --- a/resource/ui/build_menu/sentry_unavailable.res +++ /dev/null @@ -1,15 +0,0 @@ -#base "base_unavailable.res"
-
-"Resource/UI/build_menu/sentry_unavailable.res"
-{
- "ItemNameLabel"
- {
- "labelText" "#TF_Object_Sentry"
- "labelText_lodef" "#TF_Object_Sentry_360"
- }
-
- "NumberLabel"
- {
- "labelText" "1"
- }
-}
\ No newline at end of file diff --git a/resource/ui/build_menu/tele_selectable.res b/resource/ui/build_menu/tele_selectable.res deleted file mode 100644 index 4252cef..0000000 --- a/resource/ui/build_menu/tele_selectable.res +++ /dev/null @@ -1,14 +0,0 @@ -#base "base_selectable.res"
-
-"Resource/UI/build_menu/tele_selectable.res"
-{
- "ItemNameLabel"
- {
- "labelText" "Teleporter"
- }
-
- "BuildingIcon"
- {
- "icon" "hud_menu_tele_entrance_build"
- }
-}
\ No newline at end of file diff --git a/resource/ui/econ/store/v2/storehome_freetrial.res b/resource/ui/econ/store/v2/storehome_freetrial.res deleted file mode 100644 index 7ac5946..0000000 --- a/resource/ui/econ/store/v2/storehome_freetrial.res +++ /dev/null @@ -1,282 +0,0 @@ -#base "StoreHome_Base.res" - -"Resource/UI/StoreHome_FreeTrial.res" -{ - "Callout" - { - "ControlName" "EditablePanel" - "fieldName" "Callout" - "xpos" "c-300" - "ypos" "193" - "wide" "235" - "tall" "150" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "bgcolor_override" "131 66 55 255" - "paintbackground" "1" - "paintborder" "0" - "paintbackgroundtype" "2" - - // Cover up top rounded corners - "BodyBgSquare" - { - "ControlName" "EditablePanel" - "fieldName" "BodyBgSquare" - "xpos" "2" - "ypos" "32" - "wide" "231" - "tall" "20" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "bgcolor_override" "34 30 31 255" - "paintbackground" "1" - "paintbackgroundtype" "0" - } - - // Bottom rounded corners - "BodyBg" - { - "ControlName" "EditablePanel" - "fieldName" "BodyBg" - "xpos" "2" - "ypos" "40" - "wide" "231" - "tall" "108" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "bgcolor_override" "34 30 31 255" - "paintbackground" "1" - "paintbackgroundtype" "2" - } - - "HeaderText" - { - "ControlName" "CExLabel" - "fieldName" "HeaderText" - "font" "HudFontSmallestBold" - "labelText" "#Store_FreeTrial_UpgradeCalloutHeader" - "textAlignment" "west" - "xpos" "10" - "ypos" "2" - "wide" "210" - "tall" "28" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - - "FreeTrialPoint1Dot" - { - "ControlName" "CExLabel" - "fieldName" "FreeTrialPoint1Dot" - "labelText" ">" - "font" "HudFontSmallest" - "xpos" "15" - "ypos" "45" - "zpos" "2" - "wide" "5" - "tall" "5" - "visible" "1" - "enabled" "1" - "fgcolor" "178 82 22 255" - } - "FreeTrialPoint1" - { - "ControlName" "CExLabel" - "fieldName" "FreeTrialPoint1" - "font" "HudFontSmallest" - "labelText" "#Store_FreeTrial_Point1" - "textAlignment" "west" - "xpos" "24" - "ypos" "38" - "zpos" "2" - "wide" "205" - "tall" "20" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "180 168 145 255" - } - "FreeTrialPoint2Dot" - { - "ControlName" "CExLabel" - "labelText" ">" - "font" "HudFontSmallest" - "fieldName" "FreeTrialPoint2Dot" - "xpos" "15" - "ypos" "61" - "zpos" "2" - "wide" "3" - "tall" "5" - "visible" "1" - "enabled" "1" - "fgcolor" "178 82 22 255" - } - "FreeTrialPoint2" - { - "ControlName" "CExLabel" - "fieldName" "FreeTrialPoint2" - "font" "HudFontSmallest" - "labelText" "#Store_FreeTrial_Point2" - "textAlignment" "west" - "xpos" "24" - "ypos" "54" - "zpos" "2" - "wide" "205" - "tall" "20" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "180 168 145 255" - } - "FreeTrialPoint3Dot" - { - "ControlName" "CExLabel" - "labelText" ">" - "font" "HudFontSmallest" - "fieldName" "FreeTrialPoint3Dot" - "xpos" "15" - "ypos" "77" - "zpos" "2" - "wide" "3" - "tall" "5" - "visible" "1" - "enabled" "1" - "fgcolor" "178 82 22 255" - } - "FreeTrialPoint3" - { - "ControlName" "CExLabel" - "fieldName" "FreeTrialPoint3" - "font" "HudFontSmallest" - "labelText" "#Store_FreeTrial_Point4" - "textAlignment" "west" - "xpos" "24" - "ypos" "70" - "zpos" "2" - "wide" "205" - "tall" "20" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "180 168 145 255" - } - "FreeTrialPoint4Dot" - { - "ControlName" "CExLabel" - "labelText" ">" - "font" "HudFontSmallest" - "fieldName" "FreeTrialPoint4Dot" - "xpos" "15" - "ypos" "93" - "zpos" "2" - "wide" "3" - "tall" "5" - "visible" "1" - "enabled" "1" - "fgcolor" "178 82 22 255" - } - "FreeTrialPoint4" - { - "ControlName" "CExLabel" - "fieldName" "FreeTrialPoint4" - "font" "HudFontSmallest" - "labelText" "#Store_FreeTrial_Point3" - "textAlignment" "north-west" - "xpos" "24" - "ypos" "89" - "zpos" "2" - "wide" "205" - "tall" "40" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "180 168 145 255" - } - - "PlusLabel" - { - "ControlName" "CExLabel" - "fieldName" "PlusLabel" - "font" "HudFontSmallest" - "labelText" "#Store_FreeTrial_Plus" - "textAlignment" "north-west" - "xpos" "55" - "ypos" "115" - "zpos" "2" - "wide" "325" - "tall" "40" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "fgcolor" "178 82 22 255" - } - - "Plus2Label" - { - "ControlName" "CExLabel" - "fieldName" "Plus2Label" - "font" "HudFontSmallest" - "labelText" "#Store_Promotion_FirstPurchaseGift2" - "textAlignment" "north-west" - "xpos" "55" - "ypos" "115" - "zpos" "2" - "wide" "200" - "tall" "60" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "180 168 145 255" - } - } - - "FeaturedItemSymbol" - { - "ControlName" "ImagePanel" - "fieldName" "FeaturedItemSymbol" - "xpos" "c-314" - "ypos" "302" - "zpos" "3" - "wide" "58" - "tall" "58" - "visible" "1" - "enabled" "1" - "image" "store/store_starburst" - "scaleImage" "1" - } - - "PromotionImage_Hat" - { - "ControlName" "ImagePanel" - "fieldName" "PromotionImage_Hat" - "xpos" "c-328" - "ypos" "287" - "zpos" "4" - "wide" "85" - "tall" "85" - "visible" "1" - "enabled" "1" - "image" "../backpack/player/items/all_class/all_manncap_large" - "scaleImage" "1" - } -}
\ No newline at end of file diff --git a/resource/ui/econ/store/v2/storeitemcontrols.res b/resource/ui/econ/store/v2/storeitemcontrols.res deleted file mode 100644 index 93ec158..0000000 --- a/resource/ui/econ/store/v2/storeitemcontrols.res +++ /dev/null @@ -1,65 +0,0 @@ -"Resource/UI/StoreItemControls.res" -{ - "StoreItemControls" - { - "ControlName" "CStoreItemControlsPanel" - "fieldName" "StoreItemControls" - "xpos" "0" - "ypos" "0" - "zpos" "20" - "wide" "20" - "tall" "20" - "visible" "1" - "enabled" "1" - } - - "AddToCartButton" - { - "ControlName" "CExImageButton" - "fieldName" "AddToCartButton" - "xpos" "0" - "ypos" "0" - "zpos" "10" - "wide" "20" - "tall" "20" - "autoResize" "0" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "tabPosition" "0" - "labeltext" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "addtocart" - - "paintbackground" "1" - - "defaultBgColor_override" "76 107 34 255" - "ArmedBgColor_override" "86 117 44 255" - "depressedBgColor_override" "66 97 24 255" - - "image_drawcolor" "117 107 94 255" - "image_armedcolor" "200 80 60 255" - "image_depressedcolor" "255 80 60 255" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "CartImage" - "xpos" "1" - "ypos" "1" - "zpos" "13" - "wide" "18" - "tall" "18" - "visible" "1" - "enabled" "1" - "image" "store_cart" - "scaleImage" "1" - } - } -} diff --git a/resource/ui/econ/store/v2/storemapstampsinfodialog.res b/resource/ui/econ/store/v2/storemapstampsinfodialog.res deleted file mode 100644 index 0d351e4..0000000 --- a/resource/ui/econ/store/v2/storemapstampsinfodialog.res +++ /dev/null @@ -1,209 +0,0 @@ -"StoreMapStampsInfoDialog.res" -{ - "MapStampsInfoDialog" - { - "ControlName" "CTFMapStampsInfoDialog" - "fieldName" "MapStampsInfoDialog" - "xpos" "0" - "ypos" "0" - "zpos" "1000" - "wide" "f0" - "tall" "f0" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - } - - // Fullscreen background panel - "BgPanel" - { - "ControlName" "Panel" - "fieldName" "BgPanel" - "xpos" "0" - "ypos" "0" - "zpos" "0" - "wide" "f0" - "tall" "f0" - "visible" "1" - "enabled" "1" - "paintbackground" "1" - "PaintBackgroundType" "0" - "bgcolor_override" "0 0 0 128" - } - - // Rounded dialog border - "DialogFrame" - { - "ControlName" "EditablePanel" - "fieldName" "DialogFrame" - "xpos" "c-120" - "ypos" "c-150" - "zpos" "0" - "wide" "240" - "tall" "300" - "visible" "1" - "enabled" "1" - "paintbackground" "0" - "border" "TFFatLineBorderOpaque" - "PaintBorder" "1" - - // Background for the player model & item preview panels - "PreviewViewportBg" - { - "ControlName" "EditablePanel" - "fieldName" "PreviewViewportBg" - "xpos" "10" - "ypos" "22" - "zpos" "1" - "wide" "220" - "tall" "209" - "visible" "1" - "enabled" "1" - "paintborder" "1" - "border" "StoreInnerShadowBorder" - } - - - // 90-degree corners on the top part of the footer - "FooterTopPanel" - { - "ControlName" "EditablePanel" - "fieldName" "FooterTopPanel" - "xpos" "3" - "ypos" "240" - "zpos" "1" - "wide" "235" - "tall" "10" - "visible" "1" - "enabled" "1" - "paintborder" "0" - "PaintBackgroundType" "0" - "paintbackground" "1" - "bgcolor_override" "50 46 41 255" - } - - // Rounded corners on the bottom of the footer - "FootBottomPanel" - { - "ControlName" "EditablePanel" - "fieldName" "FootBottomPanel" - "xpos" "3" - "ypos" "240" - "zpos" "1" - "wide" "235" - "tall" "58" - "visible" "1" - "enabled" "1" - "paintborder" "0" - "PaintBackgroundType" "2" - "paintbackground" "1" - "bgcolor_override" "50 46 41 255" - } - - "MapsDescLabel" - { - "ControlName" "CExLabel" - "fieldName" "MapsDescLabel" - "font" "HudFontSmallest" - "labelText" "#Store_MapsDesc" - "textAlignment" "north" - "xpos" "20" - "ypos" "29" - "zpos" "5" - "wide" "200" - "tall" "200" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - - "PromotionImage_Hat" - { - "ControlName" "ImagePanel" - "fieldName" "PromotionImage_Hat" - "xpos" "90" - "ypos" "120" - "zpos" "2" - "wide" "150" - "tall" "150" - "visible" "1" - "enabled" "1" - "image" "../backpack/player/items/all_class/world_traveller_large" - "scaleImage" "1" - } - } - - "CloseButton" - { - "ControlName" "CExImageButton" - "fieldName" "CloseButton" - "xpos" "c101" - "ypos" "c-144" - "zpos" "10" - "wide" "14" - "tall" "14" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labeltext" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "close" - - "paintbackground" "0" - - "image_drawcolor" "118 107 94 255" - "image_armedcolor" "246 247 213 255" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "1" - "wide" "14" - "tall" "14" - "visible" "1" - "enabled" "1" - "image" "close_button" - "scaleImage" "1" - } - } - - "BackButton" - { - "ControlName" "CExButton" - "fieldName" "BackButton" - "xpos" "c-110" - "ypos" "c108" - "zpos" "2" - "wide" "80" - "tall" "22" - "autoResize" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#TF_BackCarat" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "close" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "fgcolor" "White" - } -}
\ No newline at end of file diff --git a/resource/ui/econ/store/v2/storepage_bundles.res b/resource/ui/econ/store/v2/storepage_bundles.res deleted file mode 100644 index d304209..0000000 --- a/resource/ui/econ/store/v2/storepage_bundles.res +++ /dev/null @@ -1,5 +0,0 @@ -#base "StorePage.res" - -"Resource/UI/StorePage_Bundles.res" -{ -}
\ No newline at end of file diff --git a/resource/ui/econ/store/v2/storepage_items.res b/resource/ui/econ/store/v2/storepage_items.res deleted file mode 100644 index e7cac2f..0000000 --- a/resource/ui/econ/store/v2/storepage_items.res +++ /dev/null @@ -1,5 +0,0 @@ -#base "StorePage.res" - -"Resource/UI/StorePage_Items.res" -{ -} diff --git a/resource/ui/econ/store/v2/storepage_maps.res b/resource/ui/econ/store/v2/storepage_maps.res deleted file mode 100644 index abe594c..0000000 --- a/resource/ui/econ/store/v2/storepage_maps.res +++ /dev/null @@ -1,116 +0,0 @@ -#base "StorePage.res" - -"Resource/UI/StorePage_Maps.res" -{ - "StorePage" - { - "modelpanels_kv" - { - "model_xpos" "6" - "model_ypos" "-3" - "model_wide" "100" - "model_tall" "70" - - "itemmodelpanel" - { - "force_square_image" "1" - } - } - } - - "ClassFilterLabel" - { - "visible" "0" - } - - "ClassFilterNavPanel" - { - "visible" "0" - } - - "ClassFilterLabel" - { - "visible" "0" - } - - "NameFilterLabel" - { - "visible" "0" - } - - "NameFilterTextEntry" - { - "visible" "0" - } - - "SortFilterLabel" - { - "visible" "0" - } - - "SortFilterComboBox" - { - "visible" "0" - } - - "TitleLabel" - { - "ControlName" "CExLabel" - "fieldName" "TitleLabel" - "font" "HudFontSmallBold" - "labelText" "#Store_Maps_Title" - "textAlignment" "north-west" - "xpos" "c-292" - "ypos" "20" - "zpos" "5" - "wide" "500" - "tall" "25" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - } - - "SubTitleLabel" - { - "ControlName" "CExLabel" - "fieldName" "SubTitleLabel" - "font" "FontStoreOriginalPrice" - "labelText" "#Store_Maps_SubTitle" - "textAlignment" "south-west" - "xpos" "c-292" - "ypos" "30" - "zpos" "5" - "wide" "500" - "tall" "25" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "fgcolor" "96 90 85 255" - } - - "LearnMoreButton" - { - "ControlName" "CExButton" - "fieldName" "LearnMoreButton" - "xpos" "c175" - "ypos" "20" - "zpos" "5" - "wide" "120" - "tall" "25" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_LearnMore" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "Command" "maps_learnmore" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - } -}
\ No newline at end of file diff --git a/resource/ui/econ/store/v2/storepreviewitempanel.res b/resource/ui/econ/store/v2/storepreviewitempanel.res deleted file mode 100644 index a57a6e2..0000000 --- a/resource/ui/econ/store/v2/storepreviewitempanel.res +++ /dev/null @@ -1,1572 +0,0 @@ -"Resource/UI/StorePreviewItemPanel.res" -{ - "storepreviewitem" - { - "ControlName" "CStorePreviewItemPanel" - "fieldName" "storepreviewitem" - "xpos" "0" - "ypos" "0" - "zpos" "1000" - "wide" "f0" - "tall" "f0" - "autoResize" "0" - "skip_autoresize" "1" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "tabPosition" "0" - - "small_vertical_break_size" "0" - "medium_vertical_break_size" "6" - "big_vertical_break_size" "7" - "horizontal_break_size" "3" - "paint_style_buttons_y" "c-140" - - "control_button_width" "70" - "control_button_height" "15" - "control_button_y" "c-140" - } - - "ScrollBar" - { - "ControlName" "ScrollBar" - "FieldName" "ScrollBar" - "xpos" "c222" - "ypos" "c-120" - "wide" "11" - "tall" "200" - "zpos" "1000" - "visible" "1" - "nobuttons" "1" - - "Slider" - { - "PaintBackgroundType" "2" - "fgcolor_override" "118 107 94 255" - } - - "UpButton" - { - "ControlName" "Button" - "FieldName" "UpButton" - "visible" "0" - "tall" "0" - "wide" "0" - } - - "DownButton" - { - "ControlName" "Button" - "FieldName" "DownButton" - "visible" "0" - "tall" "0" - "wide" "0" - } - } - - // Fullscreen background panel - "BgPanel" - { - "ControlName" "EditablePanel" - "fieldName" "BgPanel" - "xpos" "0" - "ypos" "0" - "zpos" "0" - "wide" "f0" - "tall" "f0" - "visible" "1" - "enabled" "1" - "PaintBackgroundType" "0" - "bgcolor_override" "0 0 0 128" - } - - // Rounded dialog border - "DialogFrame" - { - "ControlName" "EditablePanel" - "fieldName" "DialogFrame" - "xpos" "c-240" - "ypos" "c-150" - "zpos" "0" - "wide" "480" - "tall" "300" - "visible" "1" - "enabled" "1" - "paintbackground" "0" - "border" "TFFatLineBorderOpaque" - "PaintBorder" "1" - - // Background for the player model & item preview panels - "PreviewViewportBg" - { - "ControlName" "EditablePanel" - "fieldName" "PreviewViewportBg" - "xpos" "10" - "ypos" "18" - "zpos" "1" - "wide" "220" - "tall" "213" - "visible" "1" - "enabled" "1" - "paintborder" "1" - "border" "StoreInnerShadowBorder" - } - - // 90-degree corners on the top part of the footer - "FooterTopPanel" - { - "ControlName" "EditablePanel" - "fieldName" "FooterTopPanel" - "xpos" "3" - "ypos" "240" - "zpos" "1" - "wide" "474" - "tall" "10" - "visible" "1" - "enabled" "1" - "paintborder" "0" - "PaintBackgroundType" "0" - "paintbackground" "1" - "bgcolor_override" "50 46 41 255" - } - - // Rounded corners on the bottom of the footer - "FootBottomPanel" - { - "ControlName" "EditablePanel" - "fieldName" "FootBottomPanel" - "xpos" "3" - "ypos" "240" - "zpos" "1" - "wide" "474" - "tall" "58" - "visible" "1" - "enabled" "1" - "paintborder" "0" - "PaintBackgroundType" "2" - "paintbackground" "1" - "bgcolor_override" "50 46 41 255" - } - - "ItemNameLabel" - { - "ControlName" "CExLabel" - "fieldName" "ItemNameLabel" - "font" "HudFontSmallBold" - "labelText" "%itemname%" - "textAlignment" "west" - "xpos" "240" - "ypos" "17" - "wide" "230" - "tall" "15" - "autoResize" "0" - "skip_autoresize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - - // Scrollable editable panel for right-hand side of preview, for all text details - "DetailsView" - { - "ControlName" "EditablePanel" - "fieldName" "DetailsView" - "xpos" "240" - "ypos" "30" - "zpos" "100" - "wide" "230" - "tall" "201" - "visible" "1" - "PaintBackgroundType" "0" - "bgcolor_override" "0 0 0 0" - "skip_autoresize" "1" - "autoresize" "0" - - "ScrollableChild" - { - "ControlName" "EditablePanel" - "fieldName" "ScrollableChild" - "xpos" "240" - "ypos" "0" - "zpos" "100" - "wide" "230" - "tall" "222" - "visible" "1" - "PaintBackgroundType" "0" - "bgcolor_override" "0 0 0 0" - "skip_autoresize" "1" - "autoresize" "0" - - // - // All the controls below get laid out off of the item name label's position and the break sizes defined at the top of this file - // - "ItemLevelInfoLabel" - { - "ControlName" "CExLabel" - "fieldName" "ItemLevelInfoLabel" - "font" "FontStoreOriginalPrice" - "labelText" "%item_level_info%" - "textAlignment" "north-west" - "wide" "228" - "tall" "15" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "118 107 94 255" - } - - "RestrictionsLabel" - { - "ControlName" "CExLabel" - "fieldName" "RestrictionsLabel" - "font" "FontStoreOriginalPrice" - "labelText" "#Store_ItemDesc_Restrictions" - "textAlignment" "north-west" - "wide" "228" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "wrap" "1" - "fgcolor" "200 80 60 255" - } - - "RestrictionsTextLabel" - { - "ControlName" "CExLabel" - "fieldName" "RestrictionsTextLabel" - "font" "FontStoreOriginalPrice" - "labelText" "#Store_HolidayRestrictionText" - "textAlignment" "north-west" - "wide" "228" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "wrap" "1" - "fgcolor" "200 80 60 255" - } - - "UsedByLabel" - { - "ControlName" "CExLabel" - "fieldName" "UsedByLabel" - "font" "FontStoreOriginalPrice" - "labelText" "#Store_ItemDesc_UsedBy" - "textAlignment" "north-west" - "wide" "228" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "173 165 146 255" - } - - "UsedByTextLabel" - { - "ControlName" "CExLabel" - "fieldName" "UsedByTextLabel" - "font" "FontStoreOriginalPrice" - "labelText" "%used_by_classes%" - "textAlignment" "north-west" - "wide" "228" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - - "SlotLabel" - { - "ControlName" "CExLabel" - "fieldName" "SlotLabel" - "font" "FontStoreOriginalPrice" - "labelText" "#Store_ItemDesc_Slot" - "textAlignment" "north-west" - "wide" "228" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "173 165 146 255" - } - - "SlotTextLabel" - { - "ControlName" "CExLabel" - "fieldName" "SlotTextLabel" - "font" "FontStoreOriginalPrice" - "labelText" "%slot%" - "textAlignment" "north-west" - "wide" "228" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - - "PriceLabel" - { - "ControlName" "CExLabel" - "fieldName" "PriceLabel" - "font" "HudFontMediumSmallBold" - "textAlignment" "north-west" - "wide" "228" - "tall" "25" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "labeltext" "%price%" - } - - "ArmoryTextLabel" - { - "ControlName" "CExLabel" - "fieldName" "ArmoryTextLabel" - "font" "FontStoreOriginalPrice" - "textAlignment" "north-west" - "wide" "228" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "labeltext" "%armory_text%" - } - - "AttributesLabel" - { - "ControlName" "CExLabel" - "fieldName" "AttributesLabel" - "font" "FontStoreOriginalPrice" - "textAlignment" "north-west" - "wide" "228" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - - "ItemWikiPageButton" - { - "ControlName" "CExButton" - "fieldName" "ItemWikiPageButton" - "zpos" "20" - "wide" "150" - "tall" "20" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_ItemDesc_ItemWikiPage" - "font" "HudFontSmallestBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "command" "viewwikipage" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - } - - "TradableLabel" - { - "ControlName" "CExLabel" - "fieldName" "TradableLabel" - "font" "FontStoreOriginalPrice" - "labelText" "#Store_ItemDesc_Tradable" - "textAlignment" "north-west" - "wide" "205" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "173 165 146 255" - } - - "TradableTextLabel" - { - "ControlName" "CExLabel" - "fieldName" "TradableTextLabel" - "font" "FontStoreOriginalPrice" - "labelText" "%tradable%" - "textAlignment" "north-west" - "wide" "205" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - - "GiftableLabel" - { - "ControlName" "CExLabel" - "fieldName" "GiftableLabel" - "font" "FontStoreOriginalPrice" - "labelText" "#Store_ItemDesc_Giftable" - "textAlignment" "north-west" - "wide" "205" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "173 165 146 255" - } - - "GiftableTextLabel" - { - "ControlName" "CExLabel" - "fieldName" "GiftableTextLabel" - "font" "FontStoreOriginalPrice" - "labelText" "%giftable%" - "textAlignment" "north-west" - "wide" "205" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - - "NameableLabel" - { - "ControlName" "CExLabel" - "fieldName" "NameableLabel" - "font" "FontStoreOriginalPrice" - "labelText" "#Store_ItemDesc_Nameable" - "textAlignment" "north-west" - "wide" "205" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "173 165 146 255" - } - - "NameableTextLabel" - { - "ControlName" "CExLabel" - "fieldName" "NameableTextLabel" - "font" "FontStoreOriginalPrice" - "labelText" "%nameable%" - "textAlignment" "north-west" - "wide" "205" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - - "CraftableLabel" - { - "ControlName" "CExLabel" - "fieldName" "CraftableLabel" - "font" "FontStoreOriginalPrice" - "labelText" "#Store_ItemDesc_Craftable" - "textAlignment" "north-west" - "wide" "205" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor" "173 165 146 255" - } - - "CraftableTextLabel" - { - "ControlName" "CExLabel" - "fieldName" "CraftableTextLabel" - "font" "FontStoreOriginalPrice" - "labelText" "%craftable%" - "textAlignment" "north-west" - "wide" "205" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - } - } - } - - "classmodelpanel" - { - "ControlName" "CTFPlayerModelPanel" - "fieldName" "classmodelpanel" - - "xpos" "c-230" - "ypos" "c-132" - "zpos" "1" - "wide" "220" - "tall" "213" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - - "render_texture" "0" - "fov" "40" - "allow_rot" "1" - - "paintbackground" "1" - "paintbackgroundenabled" "1" - "bgcolor_override" "255 255 255 0" - - "model" - { - "force_pos" "1" - - "angles_x" "0" - "angles_y" "170" - "angles_z" "0" - "origin_x" "190" - "origin_y" "0" - "origin_z" "-36" - "frame_origin_x" "0" - "frame_origin_y" "0" - "frame_origin_z" "0" - "spotlight" "1" - - "modelname" "" - } - } - - "PreviewItemModelPanel" - { - "ControlName" "CItemModelPanel" - "fieldName" "PreviewItemModelPanel" - "xpos" "c-230" - "ypos" "c-140" - "zpos" "1" - "wide" "220" - "tall" "220" - "visible" "1" - "paintbackground" "0" - "paintborder" "0" - - "model_xpos" "10" - "model_ypos" "10" - "model_wide" "200" - "model_tall" "200" - "name_only" "0" - "attrib_only" "0" - "model_only" "1" - "paint_icon_hide" "0" - - "text_ypos" "10" - - "itemmodelpanel" - { - "inventory_image_type" "1" - "allow_rot" "0" - "force_square_image" "1" - } - } - - "ItemIcon1" - { - "ControlName" "CStorePreviewItemIcon" - "fieldName" "ItemIcon1" - - "xpos" "c-215" - "ypos" "c56" - "zpos" "13" - "wide" "30" - "tall" "20" - "visible" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "0" - "PaintBackgroundType" "2" - - "bgblockout" - { - "ControlName" "EditablePanel" - "fieldName" "bgblockout" - "xpos" "2" - "ypos" "2" - "zpos" "-10" - "wide" "26" - "tall" "16" - "visible" "1" - "enabled" "0" - "PaintBackgroundType" "2" - "bgcolor_override" "51 47 46 255" - } - - "itempanel" - { - "fieldName" "itempanel" - - "PaintBackgroundType" "2" - "paintborder" "0" - - "model_xpos" "1" - "model_ypos" "2" - "model_wide" "28" - "model_tall" "16" - "name_only" "0" - "attrib_only" "0" - "model_only" "1" - "paint_icon_hide" "0" - - "itemmodelpanel" - { - "use_item_rendertarget" "0" - "allow_rot" "0" - } - } - } - "ItemIcon2" - { - "ControlName" "CStorePreviewItemIcon" - "fieldName" "ItemIcon2" - - "xpos" "20" - "ypos" "225" - "zpos" "13" - "wide" "30" - "tall" "20" - "visible" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "0" - "PaintBackgroundType" "2" - - "bgblockout" - { - "ControlName" "EditablePanel" - "fieldName" "bgblockout" - "xpos" "2" - "ypos" "2" - "zpos" "-10" - "wide" "26" - "tall" "16" - "visible" "1" - "enabled" "0" - "PaintBackgroundType" "2" - "bgcolor_override" "51 47 46 255" - } - - "itempanel" - { - "fieldName" "itempanel" - - "PaintBackgroundType" "2" - "paintborder" "0" - - "model_xpos" "1" - "model_ypos" "2" - "model_wide" "28" - "model_tall" "16" - "name_only" "0" - "attrib_only" "0" - "model_only" "1" - "paint_icon_hide" "0" - - "itemmodelpanel" - { - "use_item_rendertarget" "0" - "allow_rot" "0" - } - } - } - "ItemIcon3" - { - "ControlName" "CStorePreviewItemIcon" - "fieldName" "ItemIcon3" - - "xpos" "20" - "ypos" "225" - "zpos" "13" - "wide" "30" - "tall" "20" - "visible" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "0" - "PaintBackgroundType" "2" - - "bgblockout" - { - "ControlName" "EditablePanel" - "fieldName" "bgblockout" - "xpos" "2" - "ypos" "2" - "zpos" "-10" - "wide" "26" - "tall" "16" - "visible" "1" - "enabled" "0" - "PaintBackgroundType" "2" - "bgcolor_override" "51 47 46 255" - } - - "itempanel" - { - "fieldName" "itempanel" - - "PaintBackgroundType" "2" - "paintborder" "0" - - "model_xpos" "1" - "model_ypos" "2" - "model_wide" "28" - "model_tall" "16" - "name_only" "0" - "attrib_only" "0" - "model_only" "1" - "paint_icon_hide" "0" - - "itemmodelpanel" - { - "use_item_rendertarget" "0" - "allow_rot" "0" - } - } - } - "ItemIcon4" - { - "ControlName" "CStorePreviewItemIcon" - "fieldName" "ItemIcon4" - - "xpos" "20" - "ypos" "225" - "zpos" "13" - "wide" "30" - "tall" "20" - "visible" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "0" - "PaintBackgroundType" "2" - - "bgblockout" - { - "ControlName" "EditablePanel" - "fieldName" "bgblockout" - "xpos" "2" - "ypos" "2" - "zpos" "-10" - "wide" "26" - "tall" "16" - "visible" "1" - "enabled" "0" - "PaintBackgroundType" "2" - "bgcolor_override" "51 47 46 255" - } - - "itempanel" - { - "fieldName" "itempanel" - - "PaintBackgroundType" "2" - "paintborder" "0" - - "model_xpos" "1" - "model_ypos" "2" - "model_wide" "28" - "model_tall" "16" - "name_only" "0" - "attrib_only" "0" - "model_only" "1" - "paint_icon_hide" "0" - - "itemmodelpanel" - { - "use_item_rendertarget" "0" - "allow_rot" "0" - } - } - } - "ItemIcon5" - { - "ControlName" "CStorePreviewItemIcon" - "fieldName" "ItemIcon5" - - "xpos" "20" - "ypos" "225" - "zpos" "13" - "wide" "30" - "tall" "20" - "visible" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "0" - "PaintBackgroundType" "2" - - "bgblockout" - { - "ControlName" "EditablePanel" - "fieldName" "bgblockout" - "xpos" "2" - "ypos" "2" - "zpos" "-10" - "wide" "26" - "tall" "16" - "visible" "1" - "enabled" "0" - "PaintBackgroundType" "2" - "bgcolor_override" "51 47 46 255" - } - - "itempanel" - { - "fieldName" "itempanel" - - "PaintBackgroundType" "2" - "paintborder" "0" - - "model_xpos" "1" - "model_ypos" "2" - "model_wide" "28" - "model_tall" "16" - "name_only" "0" - "attrib_only" "0" - "model_only" "1" - "paint_icon_hide" "0" - - "itemmodelpanel" - { - "use_item_rendertarget" "0" - "allow_rot" "0" - } - } - } - - "ClassUsageImage1" - { - "ControlName" "CStorePreviewClassIcon" - "fieldName" "ClassUsageImage1" - "xpos" "65" - "ypos" "225" - "zpos" "5" - "wide" "20" - "tall" "20" - "visible" "1" - "enabled" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "2" - "PaintBackgroundType" "2" - } - "ClassUsageImage2" - { - "ControlName" "CStorePreviewClassIcon" - "fieldName" "ClassUsageImage2" - "xpos" "85" - "ypos" "225" - "zpos" "5" - "wide" "20" - "tall" "20" - "visible" "1" - "enabled" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "2" - "PaintBackgroundType" "2" - } - "ClassUsageImage3" - { - "ControlName" "CStorePreviewClassIcon" - "fieldName" "ClassUsageImage3" - "xpos" "105" - "ypos" "225" - "zpos" "5" - "wide" "20" - "tall" "20" - "visible" "1" - "enabled" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "2" - "PaintBackgroundType" "2" - } - "ClassUsageImage4" - { - "ControlName" "CStorePreviewClassIcon" - "fieldName" "ClassUsageImage4" - "xpos" "125" - "ypos" "225" - "zpos" "5" - "wide" "20" - "tall" "20" - "visible" "1" - "enabled" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "2" - "PaintBackgroundType" "2" - } - "ClassUsageImage5" - { - "ControlName" "CStorePreviewClassIcon" - "fieldName" "ClassUsageImage5" - "xpos" "145" - "ypos" "225" - "zpos" "5" - "wide" "20" - "tall" "20" - "visible" "1" - "enabled" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "2" - "PaintBackgroundType" "2" - } - "ClassUsageImage6" - { - "ControlName" "CStorePreviewClassIcon" - "fieldName" "ClassUsageImage6" - "xpos" "165" - "ypos" "225" - "zpos" "5" - "wide" "20" - "tall" "20" - "visible" "1" - "enabled" "1" - "panel_bgcolor" "117 107 94 255" - "panel_bgcolor_mouseover" "255 255 255 255" - "image_indent" "2" - "PaintBackgroundType" "2" - } - - "IconsMoveLeftButton" - { - "ControlName" "CExButton" - "fieldName" "IconsMoveLeftButton" - "xpos" "c-210" - "ypos" "c58" - "zpos" "20" - "wide" "15" - "tall" "15" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "<" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "command" "icons_left" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "paintbackground" "0" - "defaultFgColor_override" "118 107 94 255" - "armedFgColor_override" "128 117 104 255" - "depressedFgColor_override" "236 227 203 255" - } - - "IconsMoveRightButton" - { - "ControlName" "CExButton" - "fieldName" "IconsMoveRightButton" - "xpos" "c-45" - "ypos" "c58" - "zpos" "20" - "wide" "15" - "tall" "15" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" ">" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "command" "icons_right" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "paintbackground" "0" - "defaultFgColor_override" "118 107 94 255" - "armedFgColor_override" "128 117 104 255" - "depressedFgColor_override" "236 227 203 255" - } - - "ClassUsageMouseoverLabel" - { - "ControlName" "CExLabel" - "fieldName" "ClassUsageMouseoverLabel" - "font" "HudFontSmallest" - "textAlignment" "center" - "xpos" "c-215" - "ypos" "c75" - "zpos" "100" - "wide" "230" - "tall" "55" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "bgcolor_override" "0 0 0 0" - "PaintBackgroundType" "2" - "centerwrap" "1" - "paintborder" "1" - "textinsetx" "100" - "border" "LoadoutItemPopupBorder" - } - - "RotLeftButton" - { - "ControlName" "CPreviewRotButton" - "fieldName" "RotLeftButton" - "xpos" "c-224" - "ypos" "190" - "zpos" "20" - "wide" "20" - "tall" "20" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "<" - "font" "HudFontBiggerBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "Command" "-1" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "paintbackground" "0" - "defaultFgColor_override" "118 107 94 255" - "armedFgColor_override" "128 117 104 255" - "depressedFgColor_override" "236 227 203 255" - "button_activation_type" "0" - } - - "RotRightButton" - { - "ControlName" "CPreviewRotButton" - "fieldName" "RotRightButton" - "xpos" "c-35" - "ypos" "190" - "zpos" "20" - "wide" "20" - "tall" "20" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" ">" - "font" "HudFontBiggerBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "Command" "1" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "paintbackground" "0" - "defaultFgColor_override" "118 107 94 255" - "armedFgColor_override" "128 117 104 255" - "depressedFgColor_override" "236 227 203 255" - "button_activation_type" "0" - } - - "NextWeaponButton" - { - "ControlName" "CExButton" - "fieldName" "NextWeaponButton" - "zpos" "20" - "autoResize" "0" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_NextWeapon" - "font" "HudFontSmallest" - "textAlignment" "center" - "textinsetx" "50" - "dulltext" "0" - "brighttext" "0" - "Command" "next_weapon" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - } - - "GoFullscreenButton" - { - "ControlName" "CExImageButton" - "fieldName" "GoFullscreenButton" - "xpos" "c-31" - "ypos" "c-123" - "zpos" "20" - "wide" "11" - "tall" "11" - "autoResize" "0" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "tabPosition" "0" - "labeltext" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "gofullscreen" - - "paintbackground" "0" - - "image_drawcolor" "118 107 94 200" - "image_armedcolor" "128 117 104 255" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "1" - "wide" "11" - "tall" "11" - "visible" "1" - "enabled" "1" - "image" "store/store_fullscreen" - "scaleImage" "1" - } - } - - "ZoomButton" - { - "ControlName" "CExImageButton" - "fieldName" "ZoomButton" - "xpos" "c-47" - "ypos" "c-123" - "zpos" "20" - "wide" "11" - "tall" "11" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labeltext" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "zoom_toggle" - - "paintbackground" "0" - - "image_drawcolor" "118 107 94 200" - "image_armedcolor" "128 117 104 255" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "1" - "wide" "11" - "tall" "11" - "visible" "1" - "enabled" "1" - "image" "store/store_zoom" - "scaleImage" "1" - } - } - - "OptionsButton" - { - "ControlName" "CExImageButton" - "fieldName" "OptionsButton" - "xpos" "c-63" - "ypos" "c-123" - "zpos" "20" - "wide" "11" - "tall" "11" - "autoResize" "0" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "tabPosition" "0" - "labeltext" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "options" - - "paintbackground" "0" - - "image_drawcolor" "118 107 94 200" - "image_armedcolor" "246 247 213 255" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "1" - "wide" "11" - "tall" "11" - "visible" "1" - "enabled" "1" - "image" "glyph_options" - "scaleImage" "1" - } - } - - "TeamNavPanel" - { - "ControlName" "CNavigationPanel" - "fieldName" "TeamNavPanel" - "xpos" "c-220" - "ypos" "c-123" - "zpos" "2" - "wide" "19" - "tall" "40" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - - "auto_scale" "1" - "auto_layout" "1" - "selected_button_default" "0" - "auto_layout_vertical_buffer" "-4" - "display_vertically" "1" - "align" "west" - - "ButtonSettings" - { - "wide" "19" - "tall" "19" - "autoResize" "0" - "pinCorner" "2" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "" - "textAlignment" "south-west" - "scaleImage" "1" - - "fgcolor" "TanDark" - "defaultFgColor_override" "TanDark" - "armedFgColor_override" "TanDark" - "depressedFgColor_override" "TanDark" - - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "sound_armed" "UI/buttonrollover.wav" - - "paintbackground" "0" - "paintbackgroundtype" "0" - "defaultBgColor_Override" "0 0 0 255" - - "paintborder" "0" - - "image_drawcolor" "255 255 255 77" - "image_armedcolor" "255 255 255 128" - "image_selectedcolor" "255 255 255 255" - - "stayselectedonclick" "1" - "keyboardinputenabled" "0" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "7" - "wide" "19" - "tall" "19" - "visible" "1" - "enabled" "1" - "scaleImage" "1" - } - } - - "Buttons" - { - "all" - { - "userdata" "2" - "image_default" "store/store_redteam" - "image_armed" "store/store_redteam" - "image_selected" "store/store_redteam" - - "SubImage" - { - "image" "store/store_redteam" - } - } - "scout" - { - "userdata" "3" - "image_default" "store/store_blueteam" - "image_armed" "store/store_blueteam" - "image_selected" "store/store_blueteam" - - "SubImage" - { - "image" "store/store_blueteam" - } - } - } - } - - "CycleTextLabel" - { - "ControlName" "CExLabel" - "fieldName" "CycleTextLabel" - "font" "FontStorePrice" - "labelText" "" - "textAlignment" "left" - "xpos" "c-186" - "ypos" "c-126" - "wide" "138" - "tall" "28" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "centerwrap" "1" - } - - //--- - // Hack - put these two labels off-screen, since we have cycle text to take the place of both of them - - "PaintNameLabel" - { - "ControlName" "CExLabel" - "fieldName" "PaintNameLabel" - "font" "FontStorePrice" - "labelText" "#Store_NoPaint" - "textAlignment" "left" - "xpos" "c-186" - "ypos" "-1000" - "wide" "138" - "tall" "28" - "autoResize" "1" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "wrap" "1" - "centerwrap" "1" - } - - "StyleNameLabel" - { - "ControlName" "CExLabel" - "fieldName" "StyleNameLabel" - "font" "FontStorePrice" - "labelText" "None" - "textAlignment" "left" - "xpos" "132" - "ypos" "-1000" - "wide" "110" - "tall" "25" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "wrap" "1" - "centerwrap" "1" - } - - //--- - - "CloseButton" - { - "ControlName" "CExImageButton" - "fieldName" "CloseButton" - "xpos" "c221" - "ypos" "c-144" - "zpos" "10" - "wide" "14" - "tall" "14" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labeltext" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "closex" // Intentionally using "closex" instead of "close" for stats - - "paintbackground" "0" - - "image_drawcolor" "118 107 94 255" - "image_armedcolor" "246 247 213 255" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "1" - "wide" "14" - "tall" "14" - "visible" "1" - "enabled" "1" - "image" "close_button" - "scaleImage" "1" - } - } - - "BackButton" - { - "ControlName" "CExButton" - "fieldName" "BackButton" - "xpos" "c-230" - "ypos" "c105" - "zpos" "2" - "wide" "90" - "tall" "22" - "autoResize" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#TF_BackCarat" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "close" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "fgcolor" "White" - } - - "TryItOutButton" - { - "ControlName" "CExButton" - "fieldName" "TryItOutButton" - "xpos" "c-130" - "ypos" "c105" - "zpos" "2" - "wide" "120" - "tall" "22" - "autoResize" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_TryItOut" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "tryitout" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "fgcolor" "White" - } - - "AddToCartButton" - { - "ControlName" "CExButton" - "fieldName" "AddToCartButton" - "xpos" "c25" - "ypos" "c103" - "zpos" "2" - "wide" "160" - "tall" "27" - "autoResize" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "%storeaddtocart%" - "font" "HudFontSmallishBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "addtocart" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "fgcolor" "34 30 31 255" - "defaultBgColor_override" "76 107 34 255" - "ArmedBgColor_override" "86 117 44 255" - "depressedBgColor_override" "66 97 24 255" - } - - "mouseoveritempanel" - { - "fieldName" "mouseoveritempanel" - "xpos" "c-70" - "ypos" "270" - "zpos" "1001" - "wide" "200" - "tall" "150" - "visible" "0" - "bgcolor_override" "0 0 0 0" - "noitem_textcolor" "117 107 94 255" - "PaintBackgroundType" "2" - "paintborder" "1" - - "text_center_x" "1" - "resize_to_text" "1" - "padding_height" "15" - - "model_ypos" "15" - "model_wide" "150" - "model_tall" "100" - - "hide_collection_panel" "1" - "model_center_x" "1" - - "name_only" "1" - } -} diff --git a/resource/ui/econ/store/v2/storepreviewitempanel_fullscreen.res b/resource/ui/econ/store/v2/storepreviewitempanel_fullscreen.res deleted file mode 100644 index 409cf0f..0000000 --- a/resource/ui/econ/store/v2/storepreviewitempanel_fullscreen.res +++ /dev/null @@ -1,360 +0,0 @@ -"Resource/UI/StorePreviewItemPanel.res" -{ - "FullscreenStorePreview" - { - "ControlName" "CMouseMessageForwardingPanel" - "fieldName" "FullscreenStorePreview" - "xpos" "0" - "ypos" "0" - "zpos" "10000" - "wide" "f0" - "tall" "f0" - "visible" "0" - "enabled" "1" - "paintbackground" "1" - "PaintBackgroundType" "0" - "bgcolor_override" "0 0 0 255" - - "fullscreen_fade_to_black_duration" "0.32" - "fullscreen_modelpanel_origin_x" "221" - "fullscreen_modelpanel_origin_y" "0" - "fullscreen_modelpanel_origin_z" "-42" - "ui_fadeout_time" "3.0" - "ui_fadeout_duration" "2.0" - } - - // This control fades in if the mouse cursor isn't moving around - "OverlayPanel" - { - "ControlName" "EditablePanel" - "fieldName" "OverlayPanel" - "xpos" "0" - "ypos" "0" - "zpos" "10" - "wide" "f0" - "tall" "f0" - "visible" "0" - "enabled" "1" - "paintbackground" "1" - "PaintBackgroundType" "0" - "bgcolor_override" "0 0 0 255" - } - - "RotateLeftButton" - { - "ControlName" "CExButton" - "fieldName" "RotateLeftButton" - "xpos" "c-200" - "ypos" "c-10" - "zpos" "4" - "wide" "20" - "tall" "20" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "<" - "font" "HudFontBiggerBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "paintbackground" "0" - "defaultFgColor_override" "118 107 94 255" - "armedFgColor_override" "128 117 104 255" - "depressedFgColor_override" "236 227 203 255" - } - - "RotateRightButton" - { - "ControlName" "CExButton" - "fieldName" "RotateRightButton" - "xpos" "c180" - "ypos" "c-10" - "zpos" "4" - "wide" "20" - "tall" "20" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" ">" - "font" "HudFontBiggerBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "paintbackground" "0" - "defaultFgColor_override" "118 107 94 255" - "armedFgColor_override" "128 117 104 255" - "depressedFgColor_override" "236 227 203 255" - } - - "NextWeaponButton" - { - "ControlName" "CExButton" - "fieldName" "NextWeaponButton" - "zpos" "1" - "autoResize" "0" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_NextWeapon" - "font" "HudFontSmallest" - "textAlignment" "center" - "textinsetx" "50" - "dulltext" "0" - "brighttext" "0" - "Command" "next_weapon" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - } - - "ZoomButton" - { - "ControlName" "CExImageButton" - "fieldName" "ZoomButton" - "xpos" "r45" - "ypos" "10" - "zpos" "4" - "wide" "15" - "tall" "15" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labeltext" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "zoom_toggle" - - "paintbackground" "0" - - "image_drawcolor" "118 107 94 200" - "image_armedcolor" "246 247 213 255" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "1" - "wide" "14" - "tall" "14" - "visible" "1" - "enabled" "1" - "image" "store/store_zoom" - "scaleImage" "1" - } - } - - "TeamNavPanel" - { - "ControlName" "CNavigationPanel" - "fieldName" "TeamNavPanel" - "xpos" "10" - "ypos" "10" - "zpos" "4" - "wide" "38" - "tall" "60" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - - "auto_scale" "1" - "auto_layout" "1" - "selected_button_default" "0" - "auto_layout_vertical_buffer" "-4" - "display_vertically" "1" - "align" "west" - - "ButtonSettings" - { - "wide" "38" - "tall" "38" - "autoResize" "0" - "pinCorner" "2" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "" - "textAlignment" "south-west" - "scaleImage" "1" - - "fgcolor" "TanDark" - "defaultFgColor_override" "TanDark" - "armedFgColor_override" "TanDark" - "depressedFgColor_override" "TanDark" - - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "sound_armed" "UI/buttonrollover.wav" - - "paintbackground" "0" - "paintbackgroundtype" "0" - "defaultBgColor_Override" "0 0 0 255" - - "paintborder" "0" - - "image_drawcolor" "255 255 255 77" - "image_armedcolor" "255 255 255 128" - "image_selectedcolor" "255 255 255 255" - - "stayselectedonclick" "1" - "keyboardinputenabled" "0" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "7" - "wide" "38" - "tall" "38" - "visible" "1" - "enabled" "1" - "scaleImage" "1" - } - } - - "Buttons" - { - "all" - { - "userdata" "2" - "image_default" "store/store_redteam" - "image_armed" "store/store_redteam" - "image_selected" "store/store_redteam" - - "SubImage" - { - "image" "store/store_redteam" - } - } - "scout" - { - "userdata" "3" - "image_default" "store/store_blueteam" - "image_armed" "store/store_blueteam" - "image_selected" "store/store_blueteam" - - "SubImage" - { - "image" "store/store_blueteam" - } - } - } - } - - "CloseButton" - { - "ControlName" "CExImageButton" - "fieldName" "CloseButton" - "xpos" "r24" - "ypos" "10" - "zpos" "4" - "wide" "14" - "tall" "14" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labeltext" "" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "0" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "Command" "close" // Intentionally using "closex" instead of "close" for stats - - "paintbackground" "0" - - "image_drawcolor" "118 107 94 200" - "image_armedcolor" "246 247 213 255" - - "SubImage" - { - "ControlName" "ImagePanel" - "fieldName" "SubImage" - "xpos" "0" - "ypos" "0" - "zpos" "1" - "wide" "14" - "tall" "14" - "visible" "1" - "enabled" "1" - "image" "store/store_fullscreen_exit" - "scaleImage" "1" - } - } - - "TryItOutButton" - { - "ControlName" "CExButton" - "fieldName" "TryItOutButton" - "xpos" "r170" - "ypos" "r65" - "zpos" "4" - "wide" "160" - "tall" "22" - "autoResize" "0" - "visible" "0" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_TryItOut" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "tryitout" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "fgcolor" "White" - } - - "AddToCartButton" - { - "ControlName" "CExButton" - "fieldName" "AddToCartButton" - "xpos" "r170" - "ypos" "r37" - "zpos" "4" - "wide" "160" - "tall" "27" - "autoResize" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_AddToCart" - "font" "HudFontSmallishBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "addtocart" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - "fgcolor" "34 30 31 255" - "defaultBgColor_override" "76 107 34 255" - "ArmedBgColor_override" "86 117 44 255" - "depressedBgColor_override" "66 97 24 255" - } -} diff --git a/resource/ui/econ/store/v2/storeviewcartpanel.res b/resource/ui/econ/store/v2/storeviewcartpanel.res deleted file mode 100644 index c45ff38..0000000 --- a/resource/ui/econ/store/v2/storeviewcartpanel.res +++ /dev/null @@ -1,482 +0,0 @@ -"Resource/UI/StoreViewCartPanel.res" -{ - "store_viewcart_panel" - { - "ControlName" "EditablePanel" - "fieldName" "store_viewcart_panel" - "xpos" "0" - "ypos" "0" - "wide" "f0" - "tall" "480" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "settitlebarvisible" "1" - "PaintBackgroundType" "0" - "bgcolor_override" "46 43 42 0" - "infocus_bgcolor_override" "46 43 42 0" - "outoffocus_bgcolor_override" "46 43 42 0" - - "title" "#StoreTitle" - "title_font" "HudFontMediumBold" - "titletextinsetX" "40" - "titletextinsetY" "0" - "titlebarfgcolor_override" "200 187 161 255" - "titlebardisabledfgcolor_override" "200 187 161 255" - "titlebarbgcolor_override" "46 43 42 255" - - "clientinsetx_override" "0" - "sheetinset_bottom" "40" - - "item_entry_kv" - { - "xpos" "0" - "ypos" "0" - "wide" "580" - "tall" "60" - - "itempanel" - { - "ControlName" "CItemModelPanel" - "fieldname" "itempanel" - "xpos" "0" - "ypos" "0" - "wide" "400" - "tall" "58" - "visible" "1" - "bgcolor_override" "0 0 0 255" - "noitem_textcolor" "117 107 94 255" - "PaintBackgroundType" "2" - "paintborder" "0" - - "model_xpos" "3" - "model_ypos" "3" - "model_wide" "80" - "model_tall" "53" - - "text_xpos" "110" - "text_ypos" "24" - "text_wide" "250" - "text_center" "0" - "text_forcesize" "1" - - "name_only" "1" - - "itemmodelpanel" - { - "use_item_rendertarget" "0" - "allow_rot" "0" - "inventory_image_type" "1" - } - } - - "quantitylabel" - { - "ControlName" "Label" - "fieldname" "quantitylabel" - "font" "HudFontSmallestBold" - "textAlignment" "north-east" - "xpos" "70" - "ypos" "45" - "zpos" "15" - "wide" "16" - "tall" "10" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "labelText" "%quantity%" - } - - "SeparatorLine" - { - "ControlName" "ImagePanel" - "fieldName" "SeparatorLine" - "xpos" "0" - "ypos" "58" - "zpos" "5" - "wide" "580" - "tall" "5" - "visible" "1" - "enabled" "1" - "image" "loadout_solid_line" - "tileImage" "1" - } - - "RemoveButton" - { - "ControlName" "CExButton" - "fieldName" "RemoveButton" - "xpos" "375" - "ypos" "17" - "zpos" "5" - "wide" "100" - "tall" "25" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_Remove" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "remove" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - } - - "PriceLabel" - { - "ControlName" "Label" - "fieldname" "PriceLabel" - "font" "FontCartPrice" - "textAlignment" "east" - "xpos" "475" - "ypos" "0" - "zpos" "15" - "wide" "95" - "tall" "60" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "labelText" "%price%" - "fgcolor_override" "130 120 104 255" - } - } - } - - "BackgroundHeader" - { - "ControlName" "ImagePanel" - "fieldName" "BackgroundHeader" - "xpos" "0" - "ypos" "0" - "zpos" "-2" - "wide" "f0" - "tall" "55" - "visible" "1" - "enabled" "1" - "image" "loadout_header" - "tileImage" "1" - } - "BackgroundFooter" - { - "ControlName" "ImagePanel" - "fieldName" "BackgroundFooter" - "xpos" "0" - "ypos" "420" - "zpos" "1" - "wide" "f0" - "tall" "60" - "visible" "1" - "enabled" "1" - "image" "loadout_bottom_gradient" - "tileImage" "1" - } - "FooterLine" - { - "ControlName" "ImagePanel" - "fieldName" "FooterLine" - "xpos" "0" - "ypos" "420" - "zpos" "2" - "wide" "f0" - "tall" "10" - "visible" "1" - "enabled" "1" - "image" "loadout_solid_line" - "scaleImage" "1" - } - - "ClientArea" - { - "ControlName" "EditablePanel" - "fieldName" "ClientArea" - "xpos" "0" - "ypos" "55" - "wide" "f0" - "tall" "368" - "bgcolor_override" "46 43 42 255" - - "HeaderLine" - { - "ControlName" "ImagePanel" - "fieldName" "HeaderLine" - "xpos" "0" - "ypos" "0" - "zpos" "5" - "wide" "f0" - "tall" "10" - "visible" "1" - "enabled" "1" - "image" "loadout_solid_line" - "scaleImage" "1" - } - - "CartItemsLabel" - { - "ControlName" "CExLabel" - "fieldName" "CartItemsLabel" - "font" "HudFontMediumBold" - "labelText" "%storecart%" - "textAlignment" "west" - "xpos" "c-300" - "ypos" "25" - "zpos" "1" - "wide" "350" - "tall" "20" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - } - - "SeparatorLine" - { - "ControlName" "ImagePanel" - "fieldName" "SeparatorLine" - "xpos" "c-300" - "ypos" "60" - "zpos" "5" - "wide" "600" - "tall" "5" - "visible" "1" - "enabled" "1" - "image" "loadout_solid_line" - "tileImage" "1" - } - - "EmptyCartLabel" - { - "ControlName" "Label" - "fieldName" "EmptyCartLabel" - "font" "HudFontSmallBold" - "labelText" "#Store_CartIsEmpty" - "textAlignment" "center" - "xpos" "c-300" - "ypos" "62" - "zpos" "6" - "wide" "600" - "tall" "240" - "autoResize" "1" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - } - - "ItemListContainerScroller" - { - "ControlName" "EditablePanel" - "fieldName" "ItemListContainerScroller" - "xpos" "c-300" - "ypos" "62" - "zpos" "5" - "wide" "600" - "tall" "240" - "PaintBackgroundType" "2" - "fgcolor_override" "118 107 94 255" // Gets copied to the scrollbar fgcolor as part of ScrollableEditablePanel - "bgcolor_override" "51 47 46 255" - "autohide_buttons" "1" - - "Scrollbar" - { - "xpos" "586" - "wide" "11" - "tall" "240" - "zpos" "1000" - - "Slider" - { - "PaintBackgroundType" "2" - } - - "nobuttons" "1" - "UpButton" - { - "ControlName" "Button" - "FieldName" "UpButton" - "visible" "0" - "tall" "0" - "wide" "0" - } - - "DownButton" - { - "ControlName" "Button" - "FieldName" "DownButton" - "visible" "0" - "tall" "0" - "wide" "0" - } - } - - "ItemListContainer" - { - "ControlName" "EditablePanel" - "fieldName" "ItemListContainer" - "xpos" "0" - "ypos" "0" - "zpos" "5" - "wide" "500" - "tall" "240" - "PaintBackgroundType" "2" - "bgcolor_override" "200 187 161 0" - - "FeaturedItemSymbol" - { - "ControlName" "ImagePanel" - "fieldName" "FeaturedItemSymbol" - "xpos" "c-225" - "ypos" "243" - "zpos" "99" - "wide" "32" - "tall" "32" - "visible" "1" - "enabled" "1" - "image" "store_special" - "scaleImage" "1" - } - - "PurchaseFooter" - { - "ControlName" "EditablePanel" - "fieldName" "PurchaseFooter" - "wide" "580" - "tall" "110" - "bgcolor_override" "0 0 0 0" - - "EstimatedTotalLabel" - { - "ControlName" "CExLabel" - "fieldName" "EstimatedTotalLabel" - "font" "HudFontSmall" - "labelText" "#Store_EstimatedTotal" - "textAlignment" "south-east" - "xpos" "0" - "ypos" "15" - "zpos" "100" - "wide" "425" - "tall" "15" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - } - "WashingtonStateSalesTaxLabel" - { - "ControlName" "CExLabel" - "fieldName" "WashingtonStateSalesTaxLabel" - "font" "HudFontSmallest" - "labelText" "#Store_WAStateSalesTax" - "textAlignment" "north-east" - "xpos" "0" - "ypos" "29" - "zpos" "100" - "wide" "425" - "tall" "12" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "fgcolor_override" "130 120 104 255" - } - "TotalSubtextLabelB" - { - "ControlName" "CExLabel" - "fieldName" "TotalSubtextLabelB" - "font" "HudFontSmallest" - "labelText" "#Store_TotalSubtextB" - "textAlignment" "north-east" - "xpos" "0" - "ypos" "39" - "zpos" "100" - "wide" "425" - "tall" "12" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "fgcolor_override" "130 120 104 255" - } - - "TotalPriceLabel" - { - "ControlName" "Label" - "fieldname" "TotalPriceLabel" - "font" "FontCartPrice" - "textAlignment" "east" - "xpos" "475" - "ypos" "0" - "zpos" "15" - "wide" "100" - "tall" "60" - "autoResize" "1" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "labelText" "%totalprice%" - "fgcolor_override" "130 120 104 255" - } - - } - } - } - } - - "CloseButton" - { - "ControlName" "CExButton" - "fieldName" "CloseButton" - "xpos" "c-300" - "ypos" "437" - "zpos" "2" - "wide" "200" - "tall" "25" - "autoResize" "0" - "pinCorner" "3" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_ContinueShopping" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "close" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - } - - "CheckoutButton" - { - "ControlName" "CExButton" - "fieldName" "CheckoutButton" - "xpos" "c170" - "ypos" "437" - "zpos" "2" - "wide" "130" - "tall" "25" - "autoResize" "0" - "pinCorner" "3" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#Store_Checkout" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "checkout" - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - } - -} diff --git a/resource/ui/huditemeffectmeter_halloweensouls.res b/resource/ui/huditemeffectmeter_halloweensouls.res deleted file mode 100644 index 7d0adb5..0000000 --- a/resource/ui/huditemeffectmeter_halloweensouls.res +++ /dev/null @@ -1,106 +0,0 @@ -"Resource/UI/HudItemEffectMeter_HalloweenSouls.res" -{ - HudItemEffectMeter - { - "fieldName" "HudItemEffectMeter" - "visible" "1" - "enabled" "1" - "xpos" "90" [$WIN32] - "ypos" "r100" [$WIN32] - "xpos_minmode" "r70" [$WIN32] - "ypos_minmode" "r74" [$WIN32] - "xpos" "r194" [$X360] - "ypos" "r74" [$X360] - "wide" "100" - "tall" "100" - "MeterFG" "White" - "MeterBG" "Gray" - } - - "ItemEffectMeterBG" - { - "ControlName" "CTFImagePanel" - "fieldName" "ItemEffectMeterBG" - "xpos" "12" - "ypos" "r51" - "zpos" "0" - "wide" "76" - "tall" "44" - "visible" "1" - "visible_minmode" "0" - "enabled" "1" - "image" "../hud/misc_ammo_area_blue" - "scaleImage" "1" - "teambg_2" "../hud/misc_ammo_area_red" - "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" - "teambg_3" "../hud/misc_ammo_area_blue" - "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" - "proportionalToParent" "1" - } - - "ItemEffectMeterLabel" - { - "ControlName" "CExLabel" - "fieldName" "ItemEffectMeterLabel" - "xpos" "25" - "ypos" "r25" - "zpos" "2" - "wide" "41" - "tall" "15" - "autoResize" "1" - "pinCorner" "2" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#TF_Ball" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "font" "TFFontSmall" - "proportionalToParent" "1" - } - - "ItemEffectMeter" - { - "ControlName" "ContinuousProgressBar" - "fieldName" "ItemEffectMeter" - "font" "Default" - "xpos" "25" - "ypos" "r23" - "ypos_minmode" "0" - "xpos_minmode" "0" - "zpos" "2" - "wide" "40" - "wide_minmode" "50" - "tall" "6" - "autoResize" "0" - "pinCorner" "0" - "visible" "0" - "enabled" "0" - "textAlignment" "Left" - "dulltext" "0" - "brighttext" "0" - "proportionalToParent" "1" - } - - "ItemEffectMeterCount" - { - "ControlName" "CExLabel" - "fieldName" "ItemEffectMeterCount" - "xpos" "20" - "ypos" "r42" - "zpos" "2" - "wide" "50" - "tall" "20" - "pinCorner" "2" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "%progresscount%" - "textAlignment" "north" - "dulltext" "0" - "brighttext" "0" - "font" "HudFontMedium" - "proportionalToParent" "1" - } -} diff --git a/resource/ui/huditemeffectmeter_kartcharge.res b/resource/ui/huditemeffectmeter_kartcharge.res index 7bf499a..e16e702 100644 --- a/resource/ui/huditemeffectmeter_kartcharge.res +++ b/resource/ui/huditemeffectmeter_kartcharge.res @@ -5,8 +5,8 @@ "fieldName" "HudItemEffectMeter" "visible" "1" "enabled" "1" - "xpos" "c-75" - "ypos" "c94" + "xpos" "c-75" + "ypos" "c156" "ypos_minmode" "c23" "wide" "500" "tall" "500" diff --git a/resource/ui/huditemeffectmeter_organs.res b/resource/ui/huditemeffectmeter_organs.res index 0e72079..97aeab6 100644 --- a/resource/ui/huditemeffectmeter_organs.res +++ b/resource/ui/huditemeffectmeter_organs.res @@ -5,17 +5,11 @@ "fieldName" "HudItemEffectMeter" "visible" "1" "enabled" "1" - "x_offset" "40" - "xpos" "r174" [$WIN32] - "ypos" "r57" [$WIN32] - "xpos_minmode" "r52" [$WIN32] - "ypos_minmode" "r68" [$WIN32] - "x_offset_minmode" "0" [$WIN32] - "xpos" "r194" [$X360] - "ypos" "r124" [$X360] - "wide" "100" - "tall" "50" - "MeterFG" "White" + "xpos" "c122" + "ypos" "374" + "wide" "75" + "tall" "20" + "MeterFG" "TanLight" "MeterBG" "Gray" } @@ -23,44 +17,38 @@ { "ControlName" "CTFImagePanel" "fieldName" "ItemEffectMeterBG" - "xpos" "12" - "ypos" "0" + "xpos" "9999" + "ypos" "9999" "zpos" "0" "wide" "100" "tall" "50" "visible" "1" - "visible_minmode" "0" "enabled" "1" "image" "../hud/misc_ammo_area_horiz2_blue" "scaleImage" "1" "teambg_2" "../hud/misc_ammo_area_horiz2_red" - "teambg_2_lodef" "../hud/misc_ammo_area_red_lodef" "teambg_3" "../hud/misc_ammo_area_horiz2_blue" - "teambg_3_lodef" "../hud/misc_ammo_area_blue_lodef" } "ItemEffectMeterLabel" { "ControlName" "CExLabel" "fieldName" "ItemEffectMeterLabel" - "xpos" "40" - "xpos_minmode" "15" - "ypos" "27" - "ypos_minmode" "0" + "xpos" "0" + "ypos" "7" "zpos" "2" - "wide" "41" - "tall" "15" + "wide" "40" + "tall" "8" "autoResize" "1" "pinCorner" "2" "visible" "1" - "visible_minmode" "1" - "textAlignment_minmode" "west" "enabled" "1" "tabPosition" "0" - "textAlignment" "center" + "textAlignment" "east" "dulltext" "0" "brighttext" "0" - "font" "TFFontSmall" + "font" "CerbeticaBold12" + "fgcolor_override" "White" } "ItemEffectMeter" @@ -70,11 +58,8 @@ "font" "Default" "xpos" "45" "ypos" "23" - "ypos_minmode" "0" - "xpos_minmode" "0" "zpos" "2" "wide" "30" - "wide_minmode" "50" "tall" "5" "autoResize" "0" "pinCorner" "0" @@ -89,9 +74,8 @@ { "ControlName" "CExLabel" "fieldName" "ItemEffectMeterCount" - "xpos" "40" - "xpos_minmode" "12" - "ypos" "10" + "xpos" "46" + "ypos" "0" "zpos" "2" "wide" "40" "tall" "20" @@ -100,9 +84,30 @@ "enabled" "1" "tabPosition" "0" "labelText" "%progresscount%" - "textAlignment" "north" + "textAlignment" "west" "dulltext" "0" "brighttext" "0" - "font" "HudFontMedium" - } + "font" "CerbeticaBold24" + "fgcolor" "White" + } + "ItemEffectMeterCountBackground" + { + "ControlName" "CExLabel" + "fieldName" "ItemEffectMeterCountBackground" + "xpos" "47" + "ypos" "1" + "zpos" "2" + "wide" "40" + "tall" "20" + "pinCorner" "2" + "visible" "1" + "enabled" "1" + "tabPosition" "0" + "labelText" "%progresscount%" + "textAlignment" "west" + "dulltext" "0" + "brighttext" "0" + "font" "CerbeticaBold24" + "fgcolor" "Black" + } }
\ No newline at end of file diff --git a/resource/ui/huditemeffectmeter_pyro.res b/resource/ui/huditemeffectmeter_pyro.res new file mode 100644 index 0000000..5add602 --- /dev/null +++ b/resource/ui/huditemeffectmeter_pyro.res @@ -0,0 +1,10 @@ +#base "HudItemEffectMeter.res" + +"Resource/UI/HudItemEffectMeter_Pyro.res" +{ + HudItemEffectMeter + { + "fieldName" "HudItemEffectMeter" + "ypos" "c113" + } +}
\ No newline at end of file diff --git a/resource/ui/hudminigame_collection.res b/resource/ui/hudminigame_collection.res deleted file mode 100644 index 3cbdeff..0000000 --- a/resource/ui/hudminigame_collection.res +++ /dev/null @@ -1,9 +0,0 @@ -#base "HudMiniGame_Base.res" - -"Resource/UI/HudMiniGame_Collection.res" -{ - "GameImage" - { - "image" "../hud/minigame_collection" - } -} diff --git a/resource/ui/hudminigame_platform.res b/resource/ui/hudminigame_platform.res deleted file mode 100644 index c6d6aff..0000000 --- a/resource/ui/hudminigame_platform.res +++ /dev/null @@ -1,14 +0,0 @@ -#base "HudMiniGame_Base.res" - -"Resource/UI/HudMiniGame_Plaform.res" -{ - "GameImage" - { - "image" "../hud/minigame_platform" - } - - "PlayingTo" - { - "labelText" "#TF_PlayingToElimination" - } -} diff --git a/resource/ui/hudminigame_soccer.res b/resource/ui/hudminigame_soccer.res deleted file mode 100644 index 92b5f71..0000000 --- a/resource/ui/hudminigame_soccer.res +++ /dev/null @@ -1,9 +0,0 @@ -#base "HudMiniGame_Base.res" - -"Resource/UI/HudMiniGame_Soccer.res" -{ - "GameImage" - { - "image" "../hud/minigame_soccer" - } -} diff --git a/resource/ui/hudminigame_soccersuddendeath.res b/resource/ui/hudminigame_soccersuddendeath.res deleted file mode 100644 index d455da4..0000000 --- a/resource/ui/hudminigame_soccersuddendeath.res +++ /dev/null @@ -1,61 +0,0 @@ -#base "HudMiniGame_Soccer.res" - -"Resource/UI/HudMiniGame_SuddenDeath.res" -{ - "PlayingTo" - { - "labelText" "#game_SuddenDeath" - } - - "RedScore" - { - "visible" "0" - } - - "RedScoreShadow" - { - "visible" "0" - } - - "BlueScore" - { - "visible" "0" - } - - "BlueScoreShadow" - { - "visible" "0" - } - - "RedSkullImage" - { - "ControlName" "ImagePanel" - "fieldName" "RedSkullImage" - "xpos" "c70" - "ypos" "r60" - "zpos" "5" - "wide" "50" - "tall" "50" - "visible" "1" - "enabled" "1" - "image" "../effects/skull001_hud" - "scaleImage" "1" - "proportionaltoparent" "1" - } - - "BlueSkullImage" - { - "ControlName" "ImagePanel" - "fieldName" "BlueSkullImage" - "xpos" "c-120" - "ypos" "r60" - "zpos" "5" - "wide" "50" - "tall" "50" - "visible" "1" - "enabled" "1" - "image" "../effects/skull001_hud" - "scaleImage" "1" - "proportionaltoparent" "1" - } -} diff --git a/resource/ui/lobbypanel.res b/resource/ui/lobbypanel.res deleted file mode 100644 index d963af4..0000000 --- a/resource/ui/lobbypanel.res +++ /dev/null @@ -1,741 +0,0 @@ -"Resource/UI/LobbyPanel.res" -{ - "LobbyPanel" - { - "ControlName" "Frame" - "fieldName" "LobbyPanel" - "xpos" "0" - "ypos" "50" - "wide" "f0" - "tall" "480" - "autoResize" "0" - "pinCorner" "0" - "visible" "0" - "enabled" "1" - "tabPosition" "0" - "settitlebarvisible" "0" - "PaintBackgroundType" "0" - "bgcolor_override" "46 43 42 255" - "proportionaltoparent" "1" - - "NavToRelay" "MvMTourOfDutyGroupBox" - "NavDown" "MvMEconItemsGroupBox" - } - - "TooltipPanel" - { - "ControlName" "EditablePanel" - "fieldName" "TooltipPanel" - "xpos" "0" - "ypos" "0" - "zpos" "10000" - "wide" "300" - "tall" "0" - "visible" "0" - "PaintBackgroundType" "2" - "border" "MainMenuBGBorder" - - "TipLabel" - { - "ControlName" "CExLabel" - "fieldName" "TipLabel" - "font" "HudFontSmallestBold" - "labelText" "%tiptext%" - "textAlignment" "west" - "xpos" "20" - "ypos" "10" - "zpos" "2" - "wide" "100" - "tall" "10" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "fgcolor_override" "TanLight" - "auto_wide_tocontents" "1" - } - } - - "NoGCGroupBox" - { - "ControlName" "EditablePanel" - "fieldName" "NoGCGroupBox" - "xpos" "0" - "ypos" "0" - "zpos" "1000" - "wide" "f0" - "tall" "f0" - "PaintBackgroundType" "0" - "paintbackground" "1" - "bgcolor_override" "0 0 0 250" - "proportionaltoparent" "1" - - "NoGCTitle" - { - "ControlName" "Label" - "fieldName" "NoGCTitle" - "font" "HudFontMediumBold" - "labelText" "#TF_Matchmaking_PleaseWait" - "xpos" "cs-0.5" - "ypos" "120" - "zpos" "2" - "wide" "340" - "tall" "40" - "textAlignment" "center" - "visible" "1" - "enabled" "1" - "proportionaltoparent" "1" - } - - "NoGCSubTitle" - { - "ControlName" "Label" - "fieldName" "NoGCSubTitle" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_RestoringConnection" - "xpos" "cs-0.5" - "ypos" "140" - "zpos" "2" - "wide" "340" - "tall" "40" - "textAlignment" "center" - "visible" "1" - "enabled" "1" - "proportionaltoparent" "1" - } - - "SpinnerImage" - { - "ControlName" "ScalableImagePanel" - "fieldName" "SpinnerImage" - "xpos" "cs-0.5" - "ypos" "160" - "zpos" "0" - "wide" "o1" - "tall" "80" - "visible" "1" - "enabled" "1" - "image" "animated/tf2_logo_hourglass" - - "proportionaltoparent" "1" - } - } - - "MatchInProgressGroupBox" - { - "ControlName" "EditablePanel" - "fieldName" "MatchInProgressGroupBox" - "xpos" "0" - "ypos" "0" - "zpos" "1000" - "wide" "f0" - "tall" "f0" - "PaintBackgroundType" "0" - "paintbackground" "1" - "bgcolor_override" "0 0 0 250" - "proportionaltoparent" "1" - - "MatchInProgressTitle" - { - "ControlName" "Label" - "fieldName" "MatchInProgressTitle" - "font" "HudFontMediumBold" - "labelText" "#TF_Matchmaking_MatchInProgress" - "xpos" "cs-0.5" - "ypos" "120" - "zpos" "2" - "wide" "340" - "tall" "40" - "textAlignment" "center" - "visible" "1" - "enabled" "1" - "proportionaltoparent" "1" - } - - "MatchInProgressSubTitle" - { - "ControlName" "Label" - "fieldName" "MatchInProgressSubTitle" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_MatchInProgress_RestoringConnection" - "xpos" "cs-0.5" - "ypos" "140" - "zpos" "2" - "wide" "340" - "tall" "40" - "textAlignment" "center" - "visible" "1" - "enabled" "1" - "proportionaltoparent" "1" - } - - "SpinnerImage" - { - "ControlName" "ScalableImagePanel" - "fieldName" "SpinnerImage" - "xpos" "cs-0.5" - "ypos" "160" - "zpos" "0" - "wide" "o1" - "tall" "80" - "visible" "1" - "enabled" "1" - "image" "animated/tf2_logo_hourglass" - - "proportionaltoparent" "1" - } - } - - "SearchActiveGroupBox" - { - "ControlName" "EditablePanel" - "fieldName" "SearchActiveGroupBox" - "xpos" "c-305" - "ypos" "10" - "zpos" "-1" - "wide" "400" - "tall" "330" - "PaintBackgroundType" "0" - "paintbackground" "1" - "bgcolor_override" "0 0 0 200" - "border" "QuickplayBorder" - - "SearchActiveTitle" - { - "ControlName" "Label" - "fieldName" "SearchActiveTitle" - "font" "HudFontMediumBold" - "labelText" "#TF_Matchmaking_Searching" - "xpos" "30" - "ypos" "20" - "zpos" "2" - "wide" "340" - "tall" "40" - "textAlignment" "north-west" - "visible" "1" - "enabled" "1" - } - - "NearbyColumnHead" - { - "ControlName" "Label" - "fieldName" "NearbyColumnHead" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_Nearby" - "xpos" "190" - "ypos" "50" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "south-east" - "visible" "1" - "enabled" "1" - } - - "WorldwideColumnHead" - { - "ControlName" "Label" - "fieldName" "WorldwideColumnHead" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_Worldwide" - "xpos" "280" - "ypos" "50" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "south-east" - "visible" "1" - "enabled" "1" - } - - "PlayersInGameLabel" - { - "ControlName" "Label" - "fieldName" "PlayersInGameLabel" - "font" "HudFontSmallBold" - "labelText" "#TF_Matchmaking_ActivePlayers" - "xpos" "30" - "ypos" "70" - "zpos" "2" - "wide" "300" - "tall" "20" - "textAlignment" "north-west" - "visible" "1" - "enabled" "1" - } - - "PlayersInGameTotalLabel" - { - "ControlName" "Label" - "fieldName" "PlayersInGameTotalLabel" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_Total" - "xpos" "60" - "ypos" "90" - "zpos" "2" - "wide" "130" - "tall" "20" - "textAlignment" "north-west" - "visible" "1" - "enabled" "1" - } - - "PlayersInGameTotalNearbyValue" - { - "ControlName" "Label" - "fieldName" "PlayersInGameTotalNearbyValue" - "font" "HudFontSmall" - "xpos" "190" - "ypos" "90" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "PlayersInGameTotalWorldwideValue" - { - "ControlName" "Label" - "fieldName" "PlayersInGameTotalWorldwideValue" - "font" "HudFontSmall" - "xpos" "280" - "ypos" "90" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "PlayersInGameMatchingLabel" - { - "ControlName" "Label" - "fieldName" "PlayersInGameMatchingLabel" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_Compatible" - "xpos" "60" - "ypos" "110" - "zpos" "2" - "wide" "130" - "tall" "20" - "textAlignment" "north-west" - "visible" "1" - "enabled" "1" - } - - "PlayersInGameMatchingNearbyValue" - { - "ControlName" "Label" - "fieldName" "PlayersInGameMatchingNearbyValue" - "font" "HudFontSmall" - "xpos" "190" - "ypos" "110" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "PlayersInGameMatchingWorldwideValue" - { - "ControlName" "Label" - "fieldName" "PlayersInGameMatchingWorldwideValue" - "font" "HudFontSmall" - "xpos" "280" - "ypos" "110" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "PlayersSearchingLabel" - { - "ControlName" "Label" - "fieldName" "PlayersSearchingLabel" - "font" "HudFontSmallBold" - "labelText" "#TF_Matchmaking_SearchingPlayers" - "xpos" "30" - "ypos" "140" - "zpos" "2" - "wide" "300" - "tall" "20" - "textAlignment" "north-west" - "visible" "1" - "enabled" "1" - } - - "PlayersSearchingTotalLabel" - { - "ControlName" "Label" - "fieldName" "PlayersSearchingTotalLabel" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_Total" - "xpos" "60" - "ypos" "160" - "zpos" "2" - "wide" "130" - "tall" "20" - "textAlignment" "north-west" - "visible" "1" - "enabled" "1" - } - - "PlayersSearchingTotalNearbyValue" - { - "ControlName" "Label" - "fieldName" "PlayersSearchingTotalNearbyValue" - "font" "HudFontSmall" - "xpos" "190" - "ypos" "160" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "PlayersSearchingTotalWorldwideValue" - { - "ControlName" "Label" - "fieldName" "PlayersSearchingTotalWorldwideValue" - "font" "HudFontSmall" - "xpos" "280" - "ypos" "160" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "PlayersSearchingMatchingLabel" - { - "ControlName" "Label" - "fieldName" "PlayersSearchingMatchingLabel" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_Compatible" - "xpos" "60" - "ypos" "180" - "zpos" "2" - "wide" "130" - "tall" "20" - "textAlignment" "north-west" - "visible" "1" - "enabled" "1" - } - - "PlayersSearchingMatchingNearbyValue" - { - "ControlName" "Label" - "fieldName" "PlayersSearchingMatchingNearbyValue" - "font" "HudFontSmall" - "xpos" "190" - "ypos" "180" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "PlayersSearchingMatchingWorldwideValue" - { - "ControlName" "Label" - "fieldName" "PlayersSearchingMatchingWorldwideValue" - "font" "HudFontSmall" - "xpos" "280" - "ypos" "180" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "EmptyGameserversLabel" - { - "ControlName" "Label" - "fieldName" "EmptyGameserversLabel" - "font" "HudFontSmallBold" - "labelText" "#TF_Matchmaking_EmptyGameservers" - "xpos" "30" - "ypos" "210" - "zpos" "2" - "wide" "300" - "tall" "20" - "textAlignment" "north-west" - "visible" "1" - "enabled" "1" - } - - "EmptyGameserversMatchingNearbyValue" - { - "ControlName" "Label" - "fieldName" "EmptyGameserversMatchingNearbyValue" - "font" "HudFontSmall" - "xpos" "190" - "ypos" "210" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "EmptyGameserversMatchingWorldwideValue" - { - "ControlName" "Label" - "fieldName" "EmptyGameserversMatchingWorldwideValue" - "font" "HudFontSmall" - "xpos" "280" - "ypos" "210" - "zpos" "2" - "wide" "90" - "tall" "20" - "textAlignment" "north-east" - "visible" "1" - "enabled" "1" - "labelText" "?" - } - - "PartyHasLowPriorityGroupBox" - { - "ControlName" "EditablePanel" - "fieldName" "PartyHasLowPriorityGroupBox" - "xpos" "30" - "ypos" "250" - "zpos" "2" - "wide" "340" - "tall" "100" - "visible" "0" - "enabled" "1" - - "PartyLowPriorityImage" - { - "ControlName" "ImagePanel" - "fieldName" "PartyLowPriorityImage" - "xpos" "0" - "ypos" "5" - "zpos" "0" - "wide" "50" - "tall" "50" - "visible" "1" - "enabled" "1" - "mouseinputenabled" "0" - "image" "pve/mvm_timeout_active_large" - "scaleImage" "1" - } - "PartyHasLowPriorityLabel" - { - "ControlName" "Label" - "fieldName" "PartyHasLowPriorityLabel" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_PartyPenalty" - "xpos" "60" - "ypos" "0" - "zpos" "2" - "wide" "275" - "tall" "60" - "textAlignment" "west" - "visible" "1" - "enabled" "1" - "wrap" "1" - "fgcolor_override" "250 114 45 255" - } - "PartyLowPriorityPenaltyTimer" - { - "ControlName" "Label" - "fieldName" "PartyLowPriorityPenaltyTimer" - "font" "HudFontSmall" - "labelText" "%penaltytimer%" - "xpos" "60" - "ypos" "50" - "zpos" "3" - "wide" "175" - "tall" "30" - "textAlignment" "west" - "visible" "1" - "enabled" "1" - "wrap" "1" - } - } - } - - "PartyActiveGroupBox" - { - "ControlName" "EditablePanel" - "fieldName" "PartyActiveGroupBox" - "xpos" "c+100" - "ypos" "10" - "zpos" "1" - "wide" "200" - "tall" "310" - "visible" "0" - - "NavToRelay" "PartyGroupBox" - "NavDown" "<<NextButton" - "NavLeft" "<<Sheet" - "NavRight" "<<StartPartyButton" - - "PartyGroupBox" - { - "ControlName" "EditablePanel" - "fieldName" "PartyGroupBox" - "xpos" "0" - "ypos" "0" - "zpos" "-1" - "wide" "200" - "tall" "160" - "PaintBackgroundType" "0" - "paintbackground" "1" - "bgcolor_override" "0 0 0 200" - "border" "QuickplayBorder" - - "NavToRelay" "InviteButton" - - "PartyLabel" - { - "ControlName" "Label" - "fieldName" "PartyLabel" - "font" "HudFontMediumBold" - "labelText" "#TF_Matchmaking_Party" - "textAlignment" "west" - "xpos" "5" - "ypos" "5" - "zpos" "0" - "wide" "120" - "tall" "20" - } - - "InviteButton" - { - "ControlName" "CExImageButton" - "fieldName" "InviteButton" - "xpos" "95" - "ypos" "5" - "zpos" "2" - "wide" "100" - "tall" "20" - "autoResize" "0" - //"pinCorner" "3" - "visible" "1" - "enabled" "1" - "tabPosition" "0" - "labelText" "#TF_Matchmaking_Invite" - "font" "HudFontSmallBold" - "textAlignment" "center" - "dulltext" "0" - "brighttext" "0" - "default" "1" - "Command" "invite" - - "sound_depressed" "UI/buttonclick.wav" - "sound_released" "UI/buttonclickrelease.wav" - } - - "TourLevelImage" - { - "ControlName" "ImagePanel" - "fieldName" "TourLevelImage" - "xpos" "169" - "ypos" "23" - "zpos" "0" - "wide" "25" - "tall" "25" - "visible" "0" - "enabled" "1" - "mouseinputenabled" "0" - "image" "../hud/mvm_tours" - "scaleImage" "1" - } - - "PartyPlayerList" - { - "ControlName" "SectionedListPanel" - "fieldName" "PartyPlayerList" - "xpos" "5" - "ypos" "35" - "zpos" "0" - "wide" "190" - "tall" "120" - "linespacing" "18" - } - } - - "ChatLog" - { - "ControlName" "RichText" - "fieldName" "ChatLog" - "Default" "ChatMiniFont" - "xpos" "0" - "ypos" "170" - "zpos" "0" - "wide" "200" - "tall" "110" - "bgcolor_override" "0 0 0 200" - "border" "QuickplayBorder" - } - - "ChatTextEntry" - { - "ControlName" "TextEntry" - "fieldName" "ChatTextEntry" - "font" "ChatFont" - "xpos" "0" - "ypos" "290" - "zpos" "0" - "wide" "200" - "tall" "20" - "bgcolor_override" "0 0 0 200" - "border" "QuickplayBorder" - } - } - - "JoinLateCheckButton" - { - "ControlName" "CheckButton" - "fieldName" "JoinLateCheckButton" - "xpos" "c+100" - "ypos" "325" - "zpos" "-1" - "wide" "200" - "tall" "20" - "font" "HudFontSmall" - "labelText" "#TF_Matchmaking_JoinInProgress" - } - - "JoinLateValueLabel" - { - "ControlName" "Label" - "fieldName" "JoinLateValueLabel" - "font" "HudFontSmall" - "textAlignment" "west" - "xpos" "c+100" - "ypos" "325" - "zpos" "-1" - "wide" "200" - "tall" "20" - } -} diff --git a/resource/ui/notifications/notify_enemy_flag_captured_blue.res b/resource/ui/notifications/notify_enemy_flag_captured_blue.res deleted file mode 100644 index 6184b3a..0000000 --- a/resource/ui/notifications/notify_enemy_flag_captured_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_enemy_flag_captured_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_home" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_PlayerTeamCapture" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_captured_red.res b/resource/ui/notifications/notify_enemy_flag_captured_red.res deleted file mode 100644 index f4573dc..0000000 --- a/resource/ui/notifications/notify_enemy_flag_captured_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_enemy_flag_captured_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_home" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_PlayerTeamCapture" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_dropped_blue.res b/resource/ui/notifications/notify_enemy_flag_dropped_blue.res deleted file mode 100644 index fa19944..0000000 --- a/resource/ui/notifications/notify_enemy_flag_dropped_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_enemy_flag_dropped_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_dropped" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_PlayerTeamDrop" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_dropped_red.res b/resource/ui/notifications/notify_enemy_flag_dropped_red.res deleted file mode 100644 index 6e572d2..0000000 --- a/resource/ui/notifications/notify_enemy_flag_dropped_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_enemy_flag_dropped_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_dropped" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_PlayerTeamDrop" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_returned_blue.res b/resource/ui/notifications/notify_enemy_flag_returned_blue.res deleted file mode 100644 index ab92f06..0000000 --- a/resource/ui/notifications/notify_enemy_flag_returned_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_enemy_flag_returned_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_home" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_OtherTeamReset" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_returned_red.res b/resource/ui/notifications/notify_enemy_flag_returned_red.res deleted file mode 100644 index 0e585a6..0000000 --- a/resource/ui/notifications/notify_enemy_flag_returned_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_enemy_flag_returned_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_home" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_OtherTeamReset" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_enemy_flag_taken_red.res b/resource/ui/notifications/notify_enemy_flag_taken_red.res deleted file mode 100644 index fddbd3a..0000000 --- a/resource/ui/notifications/notify_enemy_flag_taken_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_enemy_flag_taken_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_moving" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_PlayerTeamPickup" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_golden_wrench.res b/resource/ui/notifications/notify_golden_wrench.res deleted file mode 100644 index 7cc6e62..0000000 --- a/resource/ui/notifications/notify_golden_wrench.res +++ /dev/null @@ -1,52 +0,0 @@ -"Resource/UI/notifications/notify_golden_wrench.res" -{ - "Notification_Background" - { - "ControlName" "CImagePanel" - "fieldName" "Notification_Background" - "xpos" "0" - "ypos" "0" - "zpos" "-1" - "wide" "140" - "tall" "44" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "image" "../hud/notification_black" - "scaleImage" "1" - } - - "Notification_Icon" - { - "ControlName" "CIconPanel" - "fieldName" "Notification_Icon" - "xpos" "7" - "ypos" "12" - "wide" "36" - "tall" "12" - "visible" "1" - "enabled" "1" - "scaleImage" "1" - "icon" "ico_notify_golden_wrench" - } - - "Notification_Label" - { - "ControlName" "CExLabel" - "fieldName" "Notification_Label" - "font" "Default" - "xpos" "30" - "ypos" "9" - "wide" "200" - "tall" "20" - "autoResize" "0" - "pinCorner" "0" - "visible" "1" - "enabled" "1" - "labelText" "60 seconds until gates open" - "textAlignment" "West" - "dulltext" "0" - "brighttext" "0" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_no_invuln_with_flag_blue.res b/resource/ui/notifications/notify_no_invuln_with_flag_blue.res deleted file mode 100644 index a7ff65d..0000000 --- a/resource/ui/notifications/notify_no_invuln_with_flag_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_no_invuln_with_flag_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_moving" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_No_Invuln" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_no_invuln_with_flag_red.res b/resource/ui/notifications/notify_no_invuln_with_flag_red.res deleted file mode 100644 index d131848..0000000 --- a/resource/ui/notifications/notify_no_invuln_with_flag_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_no_invuln_with_flag_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_moving" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_No_Invuln" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_no_tele_with_flag_blue.res b/resource/ui/notifications/notify_no_tele_with_flag_blue.res deleted file mode 100644 index 75ba974..0000000 --- a/resource/ui/notifications/notify_no_tele_with_flag_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_no_tele_with_flag_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_moving" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_No_Tele" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_no_tele_with_flag_red.res b/resource/ui/notifications/notify_no_tele_with_flag_red.res deleted file mode 100644 index 9820208..0000000 --- a/resource/ui/notifications/notify_no_tele_with_flag_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_no_tele_with_flag_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_moving" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_No_Tele" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_special.res b/resource/ui/notifications/notify_special.res deleted file mode 100644 index 1c02efd..0000000 --- a/resource/ui/notifications/notify_special.res +++ /dev/null @@ -1,14 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_special.res" -{ - "Notification_Icon" - { - "icon" "ico_notify_sixty_seconds" - } - - "Notification_Label" - { - "labelText" "You are on fire" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_touching_enemy_ctf_cap_blue.res b/resource/ui/notifications/notify_touching_enemy_ctf_cap_blue.res deleted file mode 100644 index f56dbeb..0000000 --- a/resource/ui/notifications/notify_touching_enemy_ctf_cap_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_touching_enemy_ctf_cap_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_moving" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_Wrong_Goal" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_touching_enemy_ctf_cap_red.res b/resource/ui/notifications/notify_touching_enemy_ctf_cap_red.res deleted file mode 100644 index ecf9b9c..0000000 --- a/resource/ui/notifications/notify_touching_enemy_ctf_cap_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_touching_enemy_ctf_cap_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_moving" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_Wrong_Goal" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_captured_blue.res b/resource/ui/notifications/notify_your_flag_captured_blue.res deleted file mode 100644 index 7157af9..0000000 --- a/resource/ui/notifications/notify_your_flag_captured_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_your_flag_taken_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_home" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_OtherTeamCapture" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_captured_red.res b/resource/ui/notifications/notify_your_flag_captured_red.res deleted file mode 100644 index bce86ae..0000000 --- a/resource/ui/notifications/notify_your_flag_captured_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_your_flag_captured_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_home" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_OtherTeamCapture" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_dropped_blue.res b/resource/ui/notifications/notify_your_flag_dropped_blue.res deleted file mode 100644 index b4d39d5..0000000 --- a/resource/ui/notifications/notify_your_flag_dropped_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_your_flag_dropped_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_dropped" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_OtherTeamDrop" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_dropped_red.res b/resource/ui/notifications/notify_your_flag_dropped_red.res deleted file mode 100644 index e76eb43..0000000 --- a/resource/ui/notifications/notify_your_flag_dropped_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_your_flag_dropped_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_dropped" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_OtherTeamDrop" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_returned_blue.res b/resource/ui/notifications/notify_your_flag_returned_blue.res deleted file mode 100644 index c717254..0000000 --- a/resource/ui/notifications/notify_your_flag_returned_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_your_flag_returned_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_home" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_PlayerTeamReset" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_returned_red.res b/resource/ui/notifications/notify_your_flag_returned_red.res deleted file mode 100644 index 3c53bac..0000000 --- a/resource/ui/notifications/notify_your_flag_returned_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_your_flag_returned_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_home" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_PlayerTeamReset" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_taken_blue.res b/resource/ui/notifications/notify_your_flag_taken_blue.res deleted file mode 100644 index 8c0ede5..0000000 --- a/resource/ui/notifications/notify_your_flag_taken_blue.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_your_flag_taken_blue.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_blue_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_moving" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_OtherTeamPickup" - } -}
\ No newline at end of file diff --git a/resource/ui/notifications/notify_your_flag_taken_red.res b/resource/ui/notifications/notify_your_flag_taken_red.res deleted file mode 100644 index 5cb0861..0000000 --- a/resource/ui/notifications/notify_your_flag_taken_red.res +++ /dev/null @@ -1,19 +0,0 @@ -#base "base_notification.res" - -"Resource/UI/notifications/notify_your_flag_taken_red.res" -{ - "Notification_Background" - { - "image" "../hud/score_panel_red_bg" - } - - "Notification_Icon" - { - "icon" "ico_notify_flag_moving" - } - - "Notification_Label" - { - "labelText" "#TF_CTF_OtherTeamPickup" - } -}
\ No newline at end of file diff --git a/resource/ui/pvprankpanel.res b/resource/ui/pvprankpanel.res new file mode 100644 index 0000000..2ca8e41 --- /dev/null +++ b/resource/ui/pvprankpanel.res @@ -0,0 +1,548 @@ +"Resource/UI/PvPRankPanel.res" +{ + "ModelContainer" + { + "ControlName" "EditablePanel" + "fieldName" "ModelContainer" + + "xpos" "cs-0.5" + "ypos" "cs-0.5" + + "zpos" "3" + "wide" "f0" + "tall" "f0" + "proportionaltoparent" "1" + "actionsignallevel" "2" + + "BelowModelParticlePanel" + { + "ControlName" "CTFParticlePanel" + "fieldName" "BelowModelParticlePanel" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "proportionaltoparent" "1" + + "ParticleEffects" + { + "0" + { + "particle_xpos" "c0" + "particle_ypos" "c0" + "particle_scale" "3" + "particleName" "rankup_base" + "start_activated" "0" + "loop" "0" + } + } + + "paintbackground" "0" + } + + "RankModel" + { + "ControlName" "CBaseModelPanel" + "fieldName" "RankModel" + "xpos" "cs-0.5" + "ypos" "cs-0.5" + "zpos" "0" + "wide" "o1" + "tall" "p0.12" + "autoResize" "0" + "pinCorner" "0" + "visible" "1" + "enabled" "1" + "fov" "70" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "cs-0.5-228" + "ypos" "cs-0.5" + "wide" "200" + "tall" "200" + } + + "paintbackground" "0" + + "render_texture" "0" + + "model" + { + "force_pos" "1" + "modelname" "" + "skin" "0" + "angles_x" "0" + "angles_y" "180" + "angles_z" "0" + "origin_x" "45" + "origin_y" "0" + "origin_z" "0" + "spotlight" "1" + + "animation" + { + "sequence" "idle" + "default" "1" + } + } + + "lights" + { + "default" + { + "name" "directional" + "color" "0.5 0.5 0.5" + "direction" "0.60 0.65 0.2" + } + } + } + + "AboveModelParticlePanel" + { + "ControlName" "CTFParticlePanel" + "fieldName" "AboveModelParticlePanel" + "xpos" "0" + "ypos" "0" + "zpos" "1" + "wide" "f0" + "tall" "f0" + "visible" "1" + "proportionaltoparent" "1" + + "paintbackground" "0" + + "ParticleEffects" + { + "0" + { + "particle_xpos" "c0" + "particle_ypos" "c0" + "particle_scale" "5" + "particleName" "rankup_glitter" + "start_activated" "0" + "loop" "0" + } + "1" + { + "particle_xpos" "c0" + "particle_ypos" "c0" + "particle_scale" "4" + "particleName" "badgepress_base" + "start_activated" "0" + "loop" "0" + } + "2" + { + "particle_xpos" "c-8" + "particle_ypos" "c0" + "particle_scale" "4" + "particleName" "rankdown_base" + "start_activated" "0" + "loop" "0" + } + } + + "paintbackground" "1" + } + + "MedalButton" + { + "ControlName" "Button" + "fieldName" "MedalButton" + "xpos" "cs-0.5" + "ypos" "cs-0.5+2" + "zpos" "100" + "wide" "o1" + "tall" "42" + "proportionaltoparent" "1" + "command" "medal_clicked" + "actionsignallevel" "2" + "labeltext" "" + + "paintbackground" "0" + "backgroundenabled" "0" + } + } + + "BGPanel" + { + "ControlName" "EditablePanel" + "fieldName" "BGPanel" + "xpos" "0" + "ypos" "0" + "zpos" "-1" + "wide" "170" + "tall" "f40" + "visible" "0" + "PaintBackgroundType" "0" + "border" "NoBorder" + "bgcolor_override" "25 25 25 0" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "cs-0.5" + "ypos" "cs-0.5" + "tall" "35" + "wide" "505" + } + + "NameLabel" + { + "ControlName" "Label" + "fieldName" "NameLabel" + "xpos" "0" + "ypos" "0" + "wide" "170" + "zpos" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallishBold" + "fgcolor_override" "ahudWhite" + "textAlignment" "center" + "labelText" "%name%" + "proportionaltoparent" "1" + + if_mini + { + "visible" "0" + } + } + + "LevelLabel" + { + "ControlName" "Label" + "fieldName" "LevelLabel" + "xpos" "0" + "ypos" "13" + "wide" "170" + "zpos" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallestBold" + "fgcolor_override" "ahudWhite" + "textAlignment" "center" + "labelText" "%level%" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "67" + "ypos" "4" + "wide" "f0" + "textAlignment" "north-west" + } + } + + "StatsContainer" + { + "ControlName" "EditablePanel" + "fieldName" "StatsContainer" + "xpos" "0" + "ypos" "30" + "wide" "170" + "tall" "f0" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "rs1-10" + "ypos" "0" + "wide" "p0.85" + } + + "XPBar" + { + "Controlname" "EditablePanel" + "fieldName" "XPBar" + "xpos" "0" + "ypos" "0" + "wide" "170" + "tall" "30" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "cs-0.5" + "ypos" "rs1-3" + "wide" "p1" + } + + "CurrentXPLabel" + { + "ControlName" "Label" + "fieldName" "CurrentXPLabel" + "xpos" "0" + "ypos" "rs1" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "0" + "enabled" "1" + "font" "ItemFontAttribSmall" + "fgcolor_override" "TanLight" + "textAlignment" "south-west" + "labelText" "%current_xp%" + "proportionaltoparent" "1" + + if_mini + { + "visible" "1" + } + } + + "NextLevelXPLabel" + { + "ControlName" "Label" + "fieldName" "NextLevelXPLabel" + "xpos" "rs1" + "ypos" "rs1" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "0" + "enabled" "1" + "font" "ItemFontAttribSmall" + "fgcolor_override" "TanLight" + "textAlignment" "south-east" + "labelText" "%next_level_xp%" + "proportionaltoparent" "1" + + if_mini + { + "visible" "1" + } + } + + "ProgressBarsContainer" + { + "Controlname" "EditablePanel" + "fieldName" "ProgressBarsContainer" + "xpos" "35" + "ypos" "0" + "wide" "100" + "tall" "7" + "proportionaltoparent" "1" + + if_mini + { + "xpos" "0" + "ypos" "rs1-10" + "wide" "p1" + } + + "ProgressBar" + { + "ControlName" "ProgressBar" + "fieldName" "ProgressBar" + "xpos" "0" + "ypos" "cs-0.5" + "wide" "f0" + "tall" "f-2" + "zpos" "1" + "proportionaltoparent" "1" + "progress" "1" + + "fgcolor_override" "20 20 20 180" + "bgcolor_override" "0 0 0 0" + } + + "ContinuousProgressBar" + { + "ControlName" "ContinuousProgressBar" + "fieldName" "ContinuousProgressBar" + "xpos" "cs-0.5" + "ypos" "cs-0.5" + "wide" "f2" + "tall" "f2" + "proportionaltoparent" "1" + "progress" "0" + + "fgcolor_override" "CreditsGreen" + } + + "Frame" + { + "Controlname" "EditablePanel" + "fieldName" "Frame" + "xpos" "0" + "ypos" "0" + "wide" "f0" + "tall" "f0" + "zpos" "5" + "proportionaltoparent" "1" + "border" "InnerShadowBorderThin" + } + } + } + + "Stats" + { + "ControlName" "EditablePanel" + "fieldName" "Stats" + "xpos" "0" + "ypos" "5" + "wide" "f0" + "tall" "p0.45" + "visible" "0" + "proportionaltoparent" "1" + "bgcolor_override" "0 0 0 150" + + "if_mini" + { + "visible" "0" + } + + "Frame" + { + "ControlName" "EditablePanel" + "fieldName" "Frame" + "xpos" "0" + "ypos" "0" + "zpos" "10" + "wide" "0" + "tall" "0" + "proportionaltoparent" "1" + "border" "NoBorder" + } + + + + // First column + "GamesLabel" + { + "ControlName" "Label" + "fieldName" "GamesLabel" + "xpos" "10" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "ahudWhite" + "textAlignment" "north-west" + "labelText" "%stat_games%" + "proportionaltoparent" "1" + } + + "KillsLabel" + { + "ControlName" "Label" + "fieldName" "KillsLabel" + "xpos" "10" + "ypos" "10" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "ahudWhite" + "textAlignment" "north-west" + "labelText" "%stat_kills%" + "proportionaltoparent" "1" + } + + "DeathsLabel" + { + "ControlName" "Label" + "fieldName" "DeathsLabel" + "xpos" "10" + "ypos" "20" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "ahudWhite" + "textAlignment" "north-west" + "labelText" "%stat_deaths%" + "proportionaltoparent" "1" + } + + // Second column + "DamageLabel" + { + "ControlName" "Label" + "fieldName" "DamageLabel" + "xpos" "c-20" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "ahudWhite" + "textAlignment" "north-west" + "labelText" "%stat_damage%" + "proportionaltoparent" "1" + } + + "HealingLabel" + { + "ControlName" "Label" + "fieldName" "HealingLabel" + "xpos" "c-20" + "ypos" "10" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "ahudWhite" + "textAlignment" "north-west" + "labelText" "%stat_healing%" + "proportionaltoparent" "1" + } + + "SupportLabel" + { + "ControlName" "Label" + "fieldName" "SupportLabel" + "xpos" "c-20" + "ypos" "20" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "ahudWhite" + "textAlignment" "north-west" + "labelText" "%stat_support%" + "proportionaltoparent" "1" + } + + // Third column + "ScoreLabel" + { + "ControlName" "Label" + "fieldName" "ScoreLabel" + "xpos" "rs1" + "ypos" "0" + "zpos" "0" + "wide" "100" + "tall" "20" + "visible" "1" + "enabled" "1" + "font" "HudFontSmallest" + "fgcolor_override" "ahudWhite" + "textAlignment" "north-west" + "labelText" "%stat_score%" + "proportionaltoparent" "1" + } + } + } + } +} diff --git a/resource/ui/statsummary.res b/resource/ui/statsummary.res index 5d4438f..1116288 100644 --- a/resource/ui/statsummary.res +++ b/resource/ui/statsummary.res @@ -23,7 +23,7 @@ "tall" "480" "visible" "1" "enabled" "1" - "image" "replay/thumbnails/background_upward_widescreen" + "image" "../console/background_upward_widescreen" "scaleImage" "1" } |
