Last change
on this file since 6746 was
6746,
checked in by rgrieder, 15 years ago
|
Merged gamestates2 branch back to trunk.
This brings in some heavy changes in the GUI framework.
It should also fix problems with triggered asserts in the InputManager.
Note: PickupInventory does not seem to work —> Segfault when showing because before, the owner in GUIOverlay::setGUIName is already NULL.
I haven't tested it before, so I can't tell whether it's my changes.
|
-
Property svn:eol-style set to
native
|
File size:
730 bytes
|
Rev | Line | |
---|
[6363] | 1 | -- SettingsMenu.lua |
---|
| 2 | |
---|
[6746] | 3 | local P = createMenuSheet("SettingsMenu") |
---|
[6363] | 4 | |
---|
| 5 | function P.SettingsGameplayButton_clicked(e) |
---|
[6746] | 6 | showMenuSheet("GameplayMenu", true) |
---|
[6363] | 7 | end |
---|
| 8 | |
---|
| 9 | function P.SettingsMultiplayerOptionsButton_clicked(e) |
---|
[6746] | 10 | showMenuSheet("MultiplayerOptionsMenu", true) |
---|
[6363] | 11 | end |
---|
| 12 | |
---|
| 13 | function P.SettingsControlsButton_clicked(e) |
---|
[6746] | 14 | showMenuSheet("ControlsMenu", true) |
---|
[6363] | 15 | end |
---|
| 16 | |
---|
| 17 | function P.SettingsGraphicsButton_clicked(e) |
---|
[6746] | 18 | showMenuSheet("GraphicsMenu", true) |
---|
[6363] | 19 | end |
---|
| 20 | |
---|
| 21 | function P.SettingsAudioButton_clicked(e) |
---|
[6746] | 22 | showMenuSheet("AudioMenu", true) |
---|
[6363] | 23 | end |
---|
| 24 | |
---|
| 25 | function P.SettingsResetSettingsButton_clicked(e) |
---|
| 26 | -- reset settings |
---|
[6746] | 27 | logMessage(0, "event: reset settings") |
---|
[6363] | 28 | end |
---|
| 29 | |
---|
| 30 | function P.SettingsBackButton_clicked(e) |
---|
[6746] | 31 | hideMenuSheet(P.name) |
---|
[6363] | 32 | end |
---|
| 33 | |
---|
| 34 | return P |
---|
| 35 | |
---|
Note: See
TracBrowser
for help on using the repository browser.