Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_HS18/SuperOrxoBros_HS18/data/gui/scripts/GameplayMenu.lua @ 12175

Last change on this file since 12175 was 12175, checked in by siramesh, 5 years ago

Super Orxo Bros (Sidharth Ramesh, Nisa Balta, Jeff Ren)

File size: 1012 bytes
Line 
1-- GameplayMenu.lua
2
3local P = createMenuSheet("GameplayMenu")
4
5function P.onLoad()
6    dropdown = P.window:getChild("GameplayWindow/Theme/ThemeCombobox")
7    local themeList = {}
8    table.insert(themeList, "Theme 1")
9    table.insert(themeList, "Theme 2")
10    table.insert(themeList, "Theme 3")
11    for k,v in pairs(themeList) do
12        item = CEGUI.createListboxTextItem(v)
13        item:setSelectionBrushImage(menuImageSet .. "/MultiListSelectionBrush")
14        CEGUI.toCombobox(dropdown):addItem(item)
15    end
16end
17
18function P.GameplayThemeCombobox_changed(e)
19    -- theme
20    orxout("event: theme")
21end
22
23function P.GameplayDifficultyEasyButton_clicked(e)
24    -- difficulty easy
25    orxout("event: easy")
26end
27
28function P.GameplayDifficultyNormalButton_clicked(e)
29    -- difficulty normal
30    orxout("event: normal")
31end
32
33function P.GameplayDifficultyHardButton_clicked(e)
34    -- difficulty hard
35    orxout("event: hard")
36end
37
38function P.GameplayBackButton_clicked(e)
39    hideMenuSheet(P.name)
40end
41
42return P
43
Note: See TracBrowser for help on using the repository browser.