-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
675 additions
and
52 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
37 changes: 37 additions & 0 deletions
37
Loungeware/objects/sandveech_bg_obj_bbq/sandveech_bg_obj_bbq.yy
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
for (var i = 0; i < array_length(order_list); i++) { | ||
draw_text(room_width / 2 + 32, room_height / 2 + 16 * i, object_get_name(order_list[i])); | ||
} | ||
//for (var i = 0; i < array_length(order_list); i++) { | ||
// draw_text(room_width / 2 + 32, room_height / 2 + 16 * i, object_get_name(order_list[i])); | ||
//} | ||
|
||
for (var i = 0; i < array_length(plate_list); i++) { | ||
draw_text(room_width / 2 - 220, room_height / 2 + 16 * i, object_get_name(plate_list[i])); | ||
} | ||
//for (var i = 0; i < array_length(plate_list); i++) { | ||
// draw_text(room_width / 2 - 220, room_height / 2 + 16 * i, object_get_name(plate_list[i])); | ||
//} |
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,37 @@ | ||
if (TIME_REMAINING_SECONDS > 2) { | ||
for (var i = 0; i < array_length(order_list); i++) { | ||
var _spr = 0 | ||
|
||
switch (order_list[i]) { | ||
case sandveech_bg_obj_buns: | ||
_spr = 1; | ||
break; | ||
case sandveech_bg_obj_cheese: | ||
_spr = 2; | ||
break; | ||
case sandveech_bg_obj_ketchup: | ||
_spr = 3; | ||
break; | ||
case sandveech_bg_obj_lettuce: | ||
_spr = 4; | ||
break; | ||
case sandveech_bg_obj_mayo: | ||
_spr = 5; | ||
break; | ||
case sandveech_bg_obj_onion: | ||
_spr = 6; | ||
break; | ||
case sandveech_bg_obj_patty: | ||
_spr = 7; | ||
break; | ||
case sandveech_bg_obj_pickle: | ||
_spr = 8; | ||
break; | ||
case sandveech_bg_obj_tomato: | ||
_spr = 9; | ||
break; | ||
} | ||
|
||
draw_sprite(sandveech_bg_spr_icon, _spr, 32 + 48 * i, room_height - 32); | ||
} | ||
} |
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
1 change: 1 addition & 0 deletions
1
Loungeware/objects/sandveech_bg_obj_game/sandveech_bg_obj_game.yy
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
// sandveech_bg_obj_item.draw | ||
|
||
draw_sprite_ext(sprite_index, 0, x, y, 1, 1, angle, c_white, 1); | ||
var _arm = sandveech_bg_obj_arm; | ||
if (instance_exists(_arm)) { | ||
var _near = _arm.near; | ||
var _item = _arm.item; | ||
|
||
if (_item) && (_near == id) { | ||
gpu_set_fog(true, c_white, 0, 0); | ||
draw_sprite_ext(sprite_index, 0, x - 3, y, 1, 1, angle, c_white, 1); | ||
draw_sprite_ext(sprite_index, 0, x + 3, y, 1, 1, angle, c_white, 1); | ||
draw_sprite_ext(sprite_index, 0, x, y - 3, 1, 1, angle, c_white, 1); | ||
draw_sprite_ext(sprite_index, 0, x, y + 3, 1, 1, angle, c_white, 1); | ||
gpu_set_fog(false, c_white, 0, 0); | ||
} | ||
} | ||
|
||
draw_sprite_ext(sprite_index, 0, x, y, 1, 1, angle, c_white, 1); |
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
37 changes: 37 additions & 0 deletions
37
Loungeware/objects/sandveech_bg_obj_ketchup/sandveech_bg_obj_ketchup.yy
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.