Skip to content

Latest commit

 

History

History
72 lines (48 loc) · 1.44 KB

README.md

File metadata and controls

72 lines (48 loc) · 1.44 KB

Shooting Game

This is a side scrolling shoot 'em up game running on Windows 10. It is written in Go and with Ebiten game library.

This is just in development. (Maybe forever.)

Usage

How to get

  1. Download the stg-<VERSION>.zip file from the latest release page.
  2. Unzip the downloaded file.

Controls

  • arrow keys : Move
  • z : Shoot / OK
  • x : Bomb / Cancel (Back)
  • space : pause

Screenshot

screenshot

Development

Preparation

NOTE: This program is developed on Ubuntu 20.04 on WSL2. If you build in another environment, you may get an error.

Install build tools on your Ubuntu.

  • Install Git. (Any version is okay)
  • Install Go v1.18.xx.

Checkout this repository.

$ cd ${GOPATH}/src/github.com/masa213f/
$ git clone git@github.com:masa213f/stg.git
$ cd stg
$ make setup

Build and Run

$ make build
$ make run

Release

$ VERSION=x.y.z
$ git checkout main
$ git pull
$ git tag -a -m "Release v$VERSION" "v$VERSION"
$ git push origin "v$VERSION"

Special thanks

This program uses some resources published from the following sites.