Frogger Arcade is a variation of the classic Frogger arcade game.
In this game the goal is simple, get the hero character to move across the gray bricks towards the water without getting hit by the enemy bugs. The speed of enemy bugs will change with start of each game.
Users move the hero character by using the main up/right/left/down arrow keys on their keyboard.
- GitHub Project Repository: https://github.com/kishorchouhan/Frogger-Arcade-Game-Udacity-Project/
- Start playing here: https://kishorchouhan.github.io/Frogger-Arcade-Game-Udacity-Project/
To run the application:
- Download the GitHub zip file or clone the repository onto your local workstation:
- Open a browser window and navigate to the index.html file in your application's directory.
- Object-Oriented JavaScript
- constructor functions to create multiple Enemy instances
- prototypal inheritance
- HTML5 Canvas API
- resource loading via immediately-invoked function expressions (IIFE)
https://www.udacity.com/course/viewer#!/c-ud015/l-3072058665/m-3072588797/
Use this rubric for self-checking your submission.
Make sure the functions you write are object-oriented - either class functions (like Player
and Enemy
) or class prototype functions such as Enemy.prototype.checkCollisions
. Also make sure that the keyword this
is used appropriately within your class and class prototype functions to refer to the object the function is called upon.
Your README.md file should be updated with instructions on both how to 1. Run and 2. Play your arcade game.
For detailed instructions on how to get started, check out this guide.