Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/alifeee/love-games

Games written in https://love2d.org/, a framework for making 2D games in Lua.
https://github.com/alifeee/love-games

love2d lua small-games

Last synced: 15 days ago
JSON representation

Games written in https://love2d.org/, a framework for making 2D games in Lua.

Awesome Lists containing this project

README

        

# Love games!

Games written in , a framework for making 2D games in Lua.

## To run games

Follow Love [install directions](https://love2d.org/wiki/Getting_Started).

Either run the games with `love` in the terminal (or `lovec` for console support - for `print()`)

```bash
love ./game-directory
```

or drag the folder onto `love.exe`

## To build games into executables

Following instructions from

In Windows, using command prompt (for "catch-ball" game, replace as necessary).

With `love.exe` moved to root repository directory.

```bash
cd catch-ball
tar -a -c -f ../catch-ball.zip *
cd ..
ren catch-ball.zip catch-ball.love
copy /b love.exe+catch-ball.love build\catch-ball.exe
```

Then, you need to put the `.exe` in a folder with all contents from [`./dlls`](./dlls/).

The final game is shareable as the folder (zipped).