-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: forces all show_menu and hide_menu commands to use auto transiti…
…ons since the pause menu pauses the game, blocking further ESC script commands from running; updates room 14 for now
- Loading branch information
Showing
9 changed files
with
56 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
|
||
:use | ||
|
||
|
||
# Show main menu, automatic transitions ENABLED | ||
show_menu main true | ||
show_menu main | ||
|
||
# wait 2 seconds | ||
wait 2 | ||
|
||
# Hide main menu, automatic transitions ENABLED | ||
hide_menu main true | ||
hide_menu main | ||
|
||
:look | ||
say player "button main menu" | ||
say player "button main menu" |
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
game/rooms/room14/esc/button_main_menu_change_scene_auto.esc
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
|
||
:use | ||
|
||
# Show pause menu, automatic transition are disabled by default | ||
# So we can manage them manually using `transition` ESC command | ||
# Show pause menu | ||
show_menu pause | ||
|
||
# wait 2 seconds | ||
# Wait 2 seconds (this will run AFTER the pause menu is closed since the pause | ||
# menu also pauses the game) | ||
wait 2 | ||
|
||
# Hide pause menu, automatic transition are disabled by default | ||
# So we can manage them manually using `transition` ESC command | ||
hide_menu pause | ||
|
||
:look | ||
say player "Button pause menu" | ||
say player "Button pause menu" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,4 +44,4 @@ | |
queue_event worker moveworker _queuedemo true | ||
queue_event worker2 moveworker2 _queuedemo | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters