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

https://github.com/gly-engine/love

Reimplementation of the Love2d framework to make homebrew games to gba, nds, wii, ps2, tic80 and many other platforms! (also html5)
https://github.com/gly-engine/love

game-de game-engine gba love2d lua nds ps2 wii

Last synced: 8 months ago
JSON representation

Reimplementation of the Love2d framework to make homebrew games to gba, nds, wii, ps2, tic80 and many other platforms! (also html5)

Awesome Lists containing this project

README

          



> Reimplementation of the love2d framework to make homebrew games to gba, nds, wii, ps2, tic80 and many other platforms!

## Documentation

- [Online IDE](https://playground.gamely.com.br)
- [Building using cmake](https://docs.gamely.com.br/group__native#cmake)
- [Supporting Love2D from scratch](https://docs.gamely.com.br/group__manual)

### build

```
./cli.sh build samples/pong/main.lua --html
```

## Configuration

* create a `love.json` in in the same folder as the game.

```json
{
"key_a": "z",
"key_b": "x",
"key_c": "c",
"key_d": "v",
"key_menu": "p",
"key_up": "w",
"key_left": "a",
"key_down": "s",
"key_right": "d"
}
```