Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions TurkeyTrotNoArrays/TurkeyTrotNoArrays.pde
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ void setup() {


void draw() {
// Draw the background (farmyard)

if (!gameOver) {
if (!gameOver) {
// Draw the background (farmyard)
background(farmyard);

Expand All @@ -52,7 +53,7 @@ void draw() {

// Option: Draw the turkeys so they fill the racing lanes (fewer turkeys mean bigger size)

}
}


// This code only runs when the game is over
Expand Down
Binary file added TurkeyTrotNoArrays/data/cranberrySauce.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TurkeyTrotNoArrays/data/dinnerRolls.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TurkeyTrotNoArrays/data/gravy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TurkeyTrotNoArrays/data/greenBeanCasserole.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TurkeyTrotNoArrays/data/mashedPotatoes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TurkeyTrotNoArrays/data/stuffing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions TurkeyTrotWithArrays/TurkeyTrotWithArrays.pde
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ void setup() {
}

void draw() {
// Draw the background (farmyard)

if (!gameOver) {
// Draw the background (farmyard)
if (!gameOver) {

drawLaneMarkers(); // This method draws the lines between each racing lane
drawTurkeys(); // This method draws each turkey
Expand All @@ -42,7 +42,7 @@ void draw() {

// Option: Draw the turkeys so they fill the racing lanes (fewer turkeys mean bigger size)

}
}

// This code only runs when the game is over
// You do not have to change this code unless you want to
Expand Down
Binary file added TurkeyTrotWithArrays/data/cranberrySauce.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TurkeyTrotWithArrays/data/dinnerRolls.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TurkeyTrotWithArrays/data/gravy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TurkeyTrotWithArrays/data/mashedPotatoes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TurkeyTrotWithArrays/data/stuffing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.