Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colinkiama/ninjump
Phaser.js 3 Wall Jumping Game Made for One Minute Game Jam #9
https://github.com/colinkiama/ninjump
arcade-game game gamejam gamejam-2022 javascript nodejs phaser phaser3 rollup typescript vite vitejs wall-jump wall-jumping web
Last synced: about 1 month ago
JSON representation
Phaser.js 3 Wall Jumping Game Made for One Minute Game Jam #9
- Host: GitHub
- URL: https://github.com/colinkiama/ninjump
- Owner: colinkiama
- Created: 2022-12-12T14:06:25.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-11T20:48:18.000Z (8 months ago)
- Last Synced: 2024-05-02T03:08:09.879Z (7 months ago)
- Topics: arcade-game, game, gamejam, gamejam-2022, javascript, nodejs, phaser, phaser3, rollup, typescript, vite, vitejs, wall-jump, wall-jumping, web
- Language: TypeScript
- Homepage: https://colinkiama.itch.io/ninjump
- Size: 1.53 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ninjump - [One Minute jump #9](https://itch.io/jam/one-minute-game-jam-9) Submission
![Ninjump Screenshot](./img/screenshot.png)
Play it on itch.io now: https://colinkiama.itch.io/ninjump
This is built from @goecine's [Phaser 3 Rollup TypeScript template](https://github.com/geocine/phaser3-rollup-typescript)
## Description
Jump across wall to wall to stay up, while avoiding bricks along the way.
However, don't try to jump to quickly or you'll slip!
Avoid as many bricks as you can. Good luck!
## Controls
| Input | Action |
| ---------------------------------------------- | ------ |
| `Space`/ `Primary Mouse Click` /`Touch Screen` | Jump |## Development
### Available Commands
| Command | Description |
| -------------- | -------------------------------------------------------- |
| `yarn install` | Install project dependencies |
| `yarn dev` | Builds project and open web server, watching for changes |
| `yarn build` | Builds code bundle with production settings |
| `yarn serve` | Run a web server to serve built code bundle |After cloning the repo, run `yarn install` from your project directory. Then, you can start the local development
server by running `yarn dev` and navigate to http://localhost:3000.### Production
After running `yarn build`, the files you need for production will be on the `dist` folder. To test code on your `dist` folder, run `yarn serve` and navigate to http://localhost:5000