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
- Host: GitHub
- URL: https://github.com/icy-lava/elastiball
- Owner: icy-lava
- License: mit
- Created: 2023-02-22T11:33:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-16T18:49:18.000Z (about 3 years ago)
- Last Synced: 2025-03-02T09:45:43.454Z (over 1 year ago)
- Topics: game, gamedev, gamejam, love2d, lua, luajit, teal
- Language: Lua
- Homepage: https://icy-lava.itch.io/elastiball
- Size: 4 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```