Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/alifeee/love-games
- Owner: alifeee
- Created: 2024-01-12T23:21:39.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-14T15:26:38.000Z (10 months ago)
- Last Synced: 2024-10-16T12:13:50.800Z (30 days ago)
- Topics: love2d, lua, small-games
- Language: Lua
- Homepage:
- Size: 4.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).