Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonjondev/love-lunatic
A map-based, 2D game framework built in Lua with LÖVE
https://github.com/jonjondev/love-lunatic
Last synced: 7 days ago
JSON representation
A map-based, 2D game framework built in Lua with LÖVE
- Host: GitHub
- URL: https://github.com/jonjondev/love-lunatic
- Owner: jonjondev
- Created: 2019-04-28T16:04:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-04T05:09:03.000Z (almost 5 years ago)
- Last Synced: 2023-08-16T10:05:38.035Z (about 1 year ago)
- Language: Lua
- Homepage:
- Size: 1.11 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Lunatic RPG Framework
Lunatic is an adventure game framework with an inbuilt map/game editor built in Lua with LÖVE (the LÖVE Engine).## Usage
Assuming you have LÖVE installed on your system, you can run the game with the following command:
```bash
open -a love .
```
To open the map editor, use:
```bash
open -a love ./map_editor
```## Project Structure
All modules are contained within `/scripts/` and expose one of three methods in the `M` table.- `init()`
- `update()`
- `render()`