Changeset 11356 for code/trunk/data/gui/scripts
- Timestamp:
- Mar 9, 2017, 3:38:58 PM (8 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/Highscore_HS16 (added) merged: 11226,11233,11235,11245,11254,11265,11267,11304,11313,11315,11324,11326,11333
- Property svn:mergeinfo changed
-
code/trunk/data/gui/scripts/MainMenu.lua
r8079 r11356 2 2 3 3 local P = createMenuSheet("MainMenu") 4 P.loadAlong = { "SingleplayerMenu", "MultiplayerMenu", " SettingsMenu", "CreditsMenu" }4 P.loadAlong = { "SingleplayerMenu", "MultiplayerMenu", "HighscoreMenu", "SettingsMenu", "CreditsMenu" } 5 5 6 6 function P.onLoad() … … 22 22 23 23 P:setButton(4, 1, { 24 ["button"] = winMgr:getWindow("orxonox/HighscoreButton"), 25 ["callback"] = P.MultiplayerButton_clicked 26 }) 27 28 P:setButton(5, 1, { 24 29 ["button"] = winMgr:getWindow("orxonox/SettingsButton"), 25 30 ["callback"] = P.SettingsButton_clicked 26 31 }) 27 32 28 P:setButton( 5, 1, {33 P:setButton(6, 1, { 29 34 ["button"] = winMgr:getWindow("orxonox/CreditsButton"), 30 35 ["callback"] = P.CreditsButton_clicked 31 36 }) 32 37 33 P:setButton( 6, 1, {38 P:setButton(7, 1, { 34 39 ["button"] = winMgr:getWindow("orxonox/ExitButton"), 35 40 ["callback"] = P.ExitButton_clicked … … 51 56 end 52 57 58 function P.HighscoreButton_clicked(e) 59 showMenuSheet("HighscoreMenu", true) 60 end 61 53 62 function P.SettingsButton_clicked(e) 54 63 showMenuSheet("SettingsMenu", true) -
code/trunk/data/gui/scripts/MiscConfigMenu.lua
r9977 r11356 18 18 19 19 P.commandList = {} 20 table.insert(P.commandList, "Highscore playerName_") 20 21 table.insert(P.commandList, "KeyBinder mouseSensitivity_") 21 22 table.insert(P.commandList, "KeyBinder mouseSensitivityDerived_") … … 43 44 44 45 P.nameList = {} 46 table.insert(P.nameList, "Playername") 45 47 table.insert(P.nameList, "Mouse sensitivity") 46 48 table.insert(P.nameList, "Mouse acceleration")
Note: See TracChangeset
for help on using the changeset viewer.