Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 13, 2010, 6:17:51 PM (15 years ago)
Author:
rgrieder
Message:

Renamed showGUI and hideGUI to showMenuSheet and hideMenuSheet.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gamestates2/data/gui/scripts/SettingsMenu.lua

    r6718 r6722  
    44
    55function P.SettingsGameplayButton_clicked(e)
    6     showGUI("GameplayMenu", true)
     6    showMenuSheet("GameplayMenu", true)
    77end
    88
    99function P.SettingsMultiplayerOptionsButton_clicked(e)
    10     showGUI("MultiplayerOptionsMenu", true)
     10    showMenuSheet("MultiplayerOptionsMenu", true)
    1111end
    1212
    1313function P.SettingsControlsButton_clicked(e)
    14     showGUI("ControlsMenu", true)
     14    showMenuSheet("ControlsMenu", true)
    1515end
    1616
    1717function P.SettingsGraphicsButton_clicked(e)
    18     showGUI("GraphicsMenu", true)
     18    showMenuSheet("GraphicsMenu", true)
    1919end
    2020
    2121function P.SettingsAudioButton_clicked(e)
    22     showGUI("AudioMenu", true)
     22    showMenuSheet("AudioMenu", true)
    2323end
    2424
     
    2929
    3030function P.SettingsBackButton_clicked(e)
    31     hideGUI(P.name)
     31    hideMenuSheet(P.name)
    3232end
    3333
Note: See TracChangeset for help on using the changeset viewer.