-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
have some stuff left but everything is pretty much good
- Loading branch information
1 parent
6df2790
commit 1bd32b0
Showing
27 changed files
with
713 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/// @description Timer | ||
|
||
timer = 180 |
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,7 +1,30 @@ | ||
/// @description Progress to next room | ||
|
||
if (place_meeting(x,y,obj_plr1) && place_meeting(x,y,obj_plr2)) | ||
if room != rm_puzzle04 | ||
{ | ||
audio_play_sound(sfx_ui_transition,10000,0); | ||
room_goto_next(); | ||
} | ||
if (place_meeting(x,y,obj_plr1) && place_meeting(x,y,obj_plr2)) | ||
{ | ||
audio_play_sound(sfx_ui_transition,10000,0); | ||
room_goto_next(); | ||
} | ||
} | ||
|
||
if room == rm_puzzle04 | ||
{ | ||
if (place_meeting(x,y,obj_plr2)) | ||
{ | ||
timer = timer - 1; | ||
|
||
if (timer <= 0) | ||
{ | ||
audio_play_sound(sfx_gameover_3,10000,0); | ||
room_goto(rm_ending01); | ||
} | ||
|
||
if (place_meeting(x,y,obj_plr1)) | ||
{ | ||
audio_play_sound(sfx_ui_finish,10000,0); | ||
room_goto(rm_ending00); | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.