Testing the game so far

Running the game still produces a blank screen but it is well worth running it to see if there are any problems before you proceed. Just for fun, you could test the SoundEngine by adding this temporary line of code to the onTouchEvent method.

@Override
public boolean onTouchEvent(MotionEvent motionEvent) {
   // Handle the player's input here
   // But in a new way

   mSoundEngine.playShoot();

   return true;
}

Every time you tap the screen it will play the shooting sound effect. Delete the temporary line of code and we will move on to making our game engine begin to draw things too.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.138.195.21