Skip to content

badcorporatelogo/js13kgames-2020-shooooooot

Repository files navigation

Shooooooot!!

The Game

avoid being hit
point to shoot
max ammo: 404

demo

Controls

I strongly recommend using a gamepad with dual analog thumbsticks. The game can be played with keyboard and mouse.

Gamepad

  • Left stick to move.
  • Right stick to shoot.

Keyboard/Mouse

  • WASD or ↑←↓→ to move.
  • Left mouse button to shoot (in direction of cursor).

A game for 2020's js13kgames competition.

This is my entry for the 2020 js13kgames game jam. The goal is to create an HTML5 game in 13KB or less, in 30 days. Each year, there is a new theme, announced at the start of the competition.

The theme for 2020 is 404.

Developing

Environment Setup

This project depends on nodejs (for specific version, see .nvmrc). For Mac or Linux, I suggest installing nvm.

With nvm installed, do the following:

nvm install
nvm use

Install dependencies like so:

npm install
npm install -g gulp-cli

Build the app:

gulp build

Build and auto-rebuild on file changes:

gulp

JavaScript Code

The build process uses rollup.js to build main.js. All other files are included via JavaScript import statements. The code is minified and tree shaking is enabled, so any files that aren't imported won't be in the final script. I set it up this way for the least hassle during development.

Files

Directory Description
dist Build outputs (html, css, js).
src/css CSS source files.
src/assets Non-code source assets, like png or wav.
src/js JavaScript source files.
zip Zipped build outputs (game.zip). This needs to be less than 13KB.

About

js13kgames entry for 2020 (theme: "404") - twin stick shooter

Resources

License

Stars

Watchers

Forks

Languages