From a84f6f9d6949ed7b1779e96f7bf1e44dd0cd7906 Mon Sep 17 00:00:00 2001 From: Brendan Date: Tue, 26 May 2015 14:34:23 -0600 Subject: [PATCH] adds note about sound effects --- Final_haines_v1/Final_haines_v1.pde | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Final_haines_v1/Final_haines_v1.pde b/Final_haines_v1/Final_haines_v1.pde index bb2bbfa..24ac176 100644 --- a/Final_haines_v1/Final_haines_v1.pde +++ b/Final_haines_v1/Final_haines_v1.pde @@ -1,5 +1,10 @@ import javax.swing.*; +//////////////////////////////////////////////////////////////////////////////////////////////////// +// PLEASE NOTE: FOR THIS GAME TO FUNCTION CORRECTLY, YOU MUST PLAY THIS VIDEO IN THE BACKGROUND: // +// https://www.youtube.com/watch?v=npOpr7juN1Y // +//////////////////////////////////////////////////////////////////////////////////////////////////// + final int BACKGROUND_COLOR = 10; final int WALL_COLOR = 0xCCCCCC; final int PACMAN_SPEED = 2; @@ -40,6 +45,7 @@ void setup() { fill( 255, 0, 0 ); text( "START", 260, 250 ); + options.setBounds( 700, 50, 10, 10 ); options.getContentPane().setLayout( new BoxLayout( options.getContentPane(), BoxLayout.Y_AXIS ) ); options.setDefaultCloseOperation( JFrame.DO_NOTHING_ON_CLOSE ); redGhost.setSelected( true );