Changeset 10258 for code/trunk/data/gui
- Timestamp:
- Feb 5, 2015, 11:47:13 PM (10 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/data/gui/layouts/SingleplayerMenu.layout
r9782 r10258 55 55 <Event Name="Clicked" Function="SingleplayerMenu.SingleplayerBackButton_clicked"/> 56 56 </Window> 57 <Window Type="MenuWidgets/Button" Name="orxonox/CampaignButton" > 58 <Property Name="Text" Value="Campaign" /> 59 <Property Name="UnifiedMaxSize" Value="{{1,0},{1,0}}" /> 60 <Property Name="UnifiedAreaRect" Value="{{0.4,0},{0.8,0},{0.6,0},{0.85,0}}" /> 61 <Event Name="Clicked" Function="SingleplayerMenu.CampaignButton_clicked"/> 62 </Window> 57 63 </Window> 58 64 </GUILayout> -
code/trunk/data/gui/scripts/SingleplayerMenu.lua
r9348 r10258 2 2 3 3 local P = createMenuSheet("SingleplayerMenu") 4 P.loadAlong = {"ShipSelectionMenu" }4 P.loadAlong = {"ShipSelectionMenu","CampaignMenu"} 5 5 P.levelList = {} 6 6 P.activeTabIndexes = {} … … 23 23 P.SingleplayerSelectionChanged() 24 24 25 --buttons are arranged in a 1x3 matrix25 --buttons are arranged in a 2x3 matrix 26 26 P:setButton(1, 1, { 27 27 ["button"] = winMgr:getWindow("orxonox/SingleplayerStartButton"), … … 37 37 ["button"] = winMgr:getWindow("orxonox/SingleplayerBackButton"), 38 38 ["callback"] = P.SingleplayerBackButton_clicked 39 }) 40 41 P:setButton(2, 2,{ 42 ["button"] = winMgr:getWindow("orxonox/CampaignButton"), 43 ["callback"] = P.CampaignButton_clicked 39 44 }) 40 45 end … … 166 171 end 167 172 173 function P.CampaignButton_clicked(e) 174 showMenuSheet("CampaignMenu", true) 175 end 176 168 177 return P
Note: See TracChangeset
for help on using the changeset viewer.