Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/gamestate/data/gui/scripts/QuestGUI.lua @ 6659

Last change on this file since 6659 was 6659, checked in by rgrieder, 14 years ago

Use "P." instead of "P:" when using our sheets as objects, not classes.
And use "P." instead of "self.".
This does not count for BasicGUI.lua because this is in fact seen as a class!!!

  • Property svn:eol-style set to native
File size: 390 bytes
Line 
1-- QuestGUI.lua
2
3local P = createSheet("QuestGUI")
4
5function P.show()
6    P.window:show() -- TDO: Do this through parent...
7    P.visible = true
8
9    local questManager = orxonox.QuestManager:getInstance()
10
11    local questsList = winMgr:getWindow("orxonox/QuestGUI/QuestsList")
12
13    local window = questManager:getQuestGUI(P.filename)
14
15    questsList:addChildWindow(window)
16
17end
18
19return P
20
Note: See TracBrowser for help on using the repository browser.