Refonte pour utiliser le systeme de GUI #112
2 changed files with 7 additions and 2 deletions
|
@ -122,8 +122,9 @@ function Gui:hideScreen(screenname)
|
|||
end
|
||||
|
||||
|
||||
function Gui:showScreen(screenname)
|
||||
self.screens[screenname]:show()
|
||||
function Gui:showScreen(screenname, focusElement, widgetId, page, arbitraryDatas)
|
||||
self.screens[screenname]:show(focusElement, widgetId, page)
|
||||
self.screens[screenname]:setDatas(arbitraryDatas)
|
||||
end
|
||||
|
||||
-- SOUND FUNCTIONS
|
||||
|
|
|
@ -65,6 +65,10 @@ function GuiScreen:showSimple(focusElement, widgetId, page)
|
|||
|
||||
end
|
||||
|
||||
function GuiScreen:setDatas(datas)
|
||||
|
||||
end
|
||||
|
||||
function GuiScreen:hide()
|
||||
if (self.isVisible) then
|
||||
if (self.transforms["hide"] ~= nil) then
|
||||
|
|
Loading…
Reference in a new issue