An open API service indexing awesome lists of open source software.

https://github.com/icy-lava/elastiball

Entry to LÖVE Jam 2023 written in Teal
https://github.com/icy-lava/elastiball

game gamedev gamejam love2d lua luajit teal

Last synced: about 2 months ago
JSON representation

Entry to LÖVE Jam 2023 written in Teal

Awesome Lists containing this project

README

          

# Elastiball

Elastiball is a game made with Love2D for LÖVE Jam 2023.

You can [download it on itch.io](https://icy-lava.itch.io/elastiball).

## Quickstart

### Windows

In command prompt:
```cmd
git clone https://github.com/icy-lava/elastiball.git elastiball
cd elastiball

:: Install dependencies

:: With chocolatey:
choco install love busybox make luarocks
:: Or with scoop:
scoop bucket add extras
scoop install love busybox-lean make luarocks

luarocks install tl

:: For web build:
npm i love.js

:: Build & Run
make run
```

### Ubuntu / Debian based

```shell
git clone https://github.com/icy-lava/elastiball.git elastiball
cd elastiball

# Install dependencies

sudo apt-get install luarocks love busybox make

sudo luarocks install tl

# For web build:
npm i love.js

# Build & Run
make run
```