This is an adaptation of the game found in Phaser 3 documentation with improved graphics and a few more updates. The demo of the game can be found on this link.
- Add a loading/welcome screen.
- Add buttons to start a new game.
- Add difficulty levels (easy, hard, insane).
- Make a directory somewhere in your file system where you want to keep your project.
cd
into that directory from the command line.- Clone this project with
git clone https://github.com/stefanivic/phaser-jungle-jump.git
.
- From the cloned project's directory, run
yarn install
ornpm install
.
Once you've installed the project's dependencies, you can run the project using Webpack Dev Server.
- From your project's directory, run
npm run start
oryarn start
. - Open up your browser to
http://localhost:8080
. - You should see a web page with the game.
- 🎉
Because you are running the project through Webpack Dev Server, any time you make a change to your source code, the browser will automatically refresh with your updated code.