PlantsVsZombies icon indicating copy to clipboard operation
PlantsVsZombies copied to clipboard

My own clone of Plants Vs. Zombies game using Java/Swing

Results 9 PlantsVsZombies issues
Sort by recently updated
recently updated
newest added

change menu.jpg to menu.JPG, on linux files extension and name is case sensitive, some errors like null pointer may occurs if we don't change it

In the .advance() method of the Pea class, there is a line that is meant to remove the Pea. The line is: gp.getLaneZombies().get(myLane).remove(this); This should instead be gp.getLanePeas().get(myLane).remove(this); Currently peas...

The FreezePea class moves to the left, because the xPos is decremented. It should instead be incremented.

We have added testing to this project. There were additional classes created, but we used standard testing practices to be able to put some of these classes under a test...