Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 5, 2014, 3:10:42 PM (9 years ago)
Author:
maxima
Message:

Changes of Phillip. He couldn't upload himself. New Campaign Menu added.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/storymodeHS14/data/gui/scripts/SingleplayerMenu.lua

    r9348 r10157  
    22
    33local P = createMenuSheet("SingleplayerMenu")
    4 P.loadAlong = {"ShipSelectionMenu"}
     4P.loadAlong = {"ShipSelectionMenu","CampaignMenu"}
    55P.levelList = {}
    66P.activeTabIndexes = {}
     
    1919    P.createFilterTab("Tests", "test")
    2020    P.createFilterTab("Show All", nil)
     21   
    2122
    2223    -- update description and screenshot boxes
    2324    P.SingleplayerSelectionChanged()
    2425
    25     --buttons are arranged in a 1x3 matrix
     26    --buttons are arranged in a 1x4 matrix
    2627    P:setButton(1, 1, {
    2728            ["button"] = winMgr:getWindow("orxonox/SingleplayerStartButton"),
     
    3738            ["button"] = winMgr:getWindow("orxonox/SingleplayerBackButton"),
    3839            ["callback"]  = P.SingleplayerBackButton_clicked
     40    })
     41    P:setButton(1, 4,{
     42                ["button"] = winMgr:getWindow("orxonox/CampaignButton"),
     43                ["callback"] = P.CampaignButton_clicked
    3944    })
    4045end
     
    166171end
    167172
     173function P.CampaignButton_clicked(e)
     174        showMenuSheet("CampaignMenu", true)
     175end
     176
    168177return P
Note: See TracChangeset for help on using the changeset viewer.