https://github.com/vaibhavrajsingh2001/vrs-arcade
A simple shooting arcade game using pixi.js
https://github.com/vaibhavrajsingh2001/vrs-arcade
pixijs webgl2 webpack
Last synced: 3 months ago
JSON representation
A simple shooting arcade game using pixi.js
- Host: GitHub
- URL: https://github.com/vaibhavrajsingh2001/vrs-arcade
- Owner: vaibhavrajsingh2001
- Created: 2020-06-11T21:34:09.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T08:39:35.000Z (over 3 years ago)
- Last Synced: 2025-10-10T19:47:04.820Z (9 months ago)
- Topics: pixijs, webgl2, webpack
- Language: JavaScript
- Homepage: https://arcade.vaibhavraj.dev/
- Size: 6.88 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Shooter game with PIXI.js
It's a fairly simple implementation of the PIXI.js animation library.
Bundled it with webpack, so this repo can even be used as a starter code for any PIXI.js project.

## Controls
On PC 💻
`W OR ↑ : Move ship upwards`
`A OR ← : Move ship left`
`S OR ↓ : Move ship down`
`D OR → : Move ship left`
`Left Click: Shoot lasers`
`P : Play audio`
`M : Mute aduio`
On phones 📱
`Drag around the ship.`
`Click on the screen to shoot lasers`
## Instructions
Each time you hit the enemy:
* Your score increases by 1.
* The enemy speed increases by 1.
* The speed of lasers increases by 0.5
High Score is stored in local storage.
## Using this repo
To run it on you localhost :
```
git clone git@github.com:vaibhavrajsingh2001/arcade-game.git
cd /arcade-game
npm install
npm start
```
Open the game at http://localhost:3000/ then.
To build the production build :
```
npm run clean
npm run build
```