-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
MedicodiBiscotti
committed
Aug 23, 2015
1 parent
7113dd7
commit 118ae09
Showing
2 changed files
with
295 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
"GameMenu" [$WIN32] | ||
{ | ||
"ConsoleButton" | ||
{ | ||
"label" "Console" | ||
"command" "engine toggleconsole" | ||
} | ||
|
||
"MinmodeButton" | ||
{ | ||
"label" "Minimal HUD" | ||
"command" "engine toggle cl_hud_minmode" | ||
} | ||
|
||
"ResumeGameButton" | ||
{ | ||
"label" "#MMenu_ResumeGame" | ||
"command" "ResumeGame" | ||
"OnlyInGame" "1" | ||
"subimage" "icon_resume" | ||
} | ||
"QuickplayButton" | ||
{ | ||
"label" "#MMenu_PlayMultiplayer" | ||
"command" "quickplay" | ||
"subimage" "glyph_multiplayer" | ||
"OnlyAtMenu" "1" | ||
} | ||
"QuickplayChangeButton" | ||
{ | ||
"label" "#MMenu_NewGame" | ||
"command" "quickplay" | ||
"subimage" "glyph_server" | ||
"OnlyInGame" "1" | ||
} | ||
"PlayPVEButton" | ||
{ | ||
"label" "#MMenu_PlayCoop" | ||
"command" "playpve" | ||
"subimage" "glyph_coop" | ||
"OnlyAtMenu" "1" | ||
} | ||
"PlayCompetitiveButton" | ||
{ | ||
"label" "#MMenu_PlayComp" | ||
"command" "ladder_ui_show" | ||
"subimage" "glyph_practice" | ||
"OnlyAtMenu" "1" | ||
"OnlyWhenCompetitiveEnabled" "1" | ||
} | ||
"ServerBrowserButton" | ||
{ | ||
"label" "#MMenu_Servers" | ||
"command" "OpenServerBrowser" | ||
"subimage" "glyph_server_browser" | ||
"OnlyAtMenu" "1" | ||
} | ||
"ChangeServerButton" | ||
{ | ||
"label" "#MMenu_ChangeServer" | ||
"command" "OpenServerBrowser" | ||
"subimage" "glyph_server_browser" | ||
"OnlyInGame" "1" | ||
} | ||
"ReplayBrowserButton" | ||
{ | ||
"label" "#GameUI_GameMenu_ReplayDemos" | ||
"command" "engine replay_reloadbrowser" | ||
"subimage" "glyph_tv" | ||
} | ||
"SteamWorkshopButton" | ||
{ | ||
"label" "#MMenu_SteamWorkshop" | ||
"command" "engine OpenSteamWorkshopDialog" | ||
"subimage" "glyph_steamworkshop" | ||
} | ||
"VRModeButton" | ||
{ | ||
"label" "#MMenu_VRMode_Activate" | ||
"command" "engine vr_toggle" | ||
"subimage" "glyph_vr" | ||
"OnlyWhenVREnabled" "1" | ||
} | ||
"TrainingButton" | ||
{ | ||
"label" "#TF_Training" | ||
"command" "offlinepractice" | ||
"subimage" "glyph_practice" | ||
"OnlyAtMenu" "1" | ||
} | ||
|
||
// These buttons get positioned by the MainMenuOverride.res | ||
"CreateServerButton" | ||
{ | ||
"label" "#GameUI_GameMenu_CreateServer" | ||
"command" "OpenCreateMultiplayerGameDialog" | ||
"OnlyAtMenu" "1" | ||
"tooltip" "#GameUI_GameMenu_CreateServer" | ||
} | ||
"GeneralStoreButton" | ||
{ | ||
"label" "#MMenu_Shop" | ||
"command" "engine open_store" | ||
"subimage" "glyph_store" | ||
} | ||
"CharacterSetupButton" | ||
{ | ||
"label" "#MMenu_CharacterSetup" | ||
"command" "engine open_charinfo" | ||
"subimage" "glyph_items" | ||
} | ||
|
||
// These buttons are only shown while in-game | ||
// and also are positioned by the .res file | ||
"CallVoteButton" | ||
{ | ||
"label" "" | ||
"command" "callvote" | ||
"OnlyInGame" "1" | ||
"subimage" "icon_checkbox" | ||
"tooltip" "#MMenu_CallVote" | ||
} | ||
"MutePlayersButton" | ||
{ | ||
"label" "" | ||
"command" "OpenPlayerListDialog" | ||
"OnlyInGame" "1" | ||
"subimage" "glyph_muted" | ||
"tooltip" "#MMenu_MutePlayers" | ||
} | ||
"RequestCoachButton" | ||
{ | ||
"label" "" | ||
"command" "engine cl_coach_find_coach" | ||
"OnlyInGame" "1" | ||
"subimage" "icon_whistle" | ||
"tooltip" "#MMenu_RequestCoach" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters