Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rbaltrusch/myrkur
Myrkur, my game jam entry for the 48h Kenney jam 2023
https://github.com/rbaltrusch/myrkur
exploration-game game game-dev game-development game-jam kenney-jam kenney-jam-2023 love2d lua platformer
Last synced: about 1 month ago
JSON representation
Myrkur, my game jam entry for the 48h Kenney jam 2023
- Host: GitHub
- URL: https://github.com/rbaltrusch/myrkur
- Owner: rbaltrusch
- License: mit
- Created: 2023-07-22T16:23:21.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-11T21:45:30.000Z (10 months ago)
- Last Synced: 2024-03-12T22:33:43.176Z (10 months ago)
- Topics: exploration-game, game, game-dev, game-development, game-jam, kenney-jam, kenney-jam-2023, love2d, lua, platformer
- Language: Lua
- Homepage: https://richardbaltrusch.itch.io/myrkur
- Size: 35.8 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![Myrkur](media/banner_github.png)
Myrkur is a game in which you, a little powerless blue blob, explore an open world to collect all the crowns left behind in the desolate wastelands of a kingdom long gone by...
This is a game jam entry for the 48h Kenney jam 2023, written in Lua with the Love library, and is hosted on itch.io [here](https://richardbaltrusch.itch.io/myrkur).
![Gif of the gameplay](media/gameplay_short.gif)
## How to run
To run, download lua and the love framework, then run love.exe in the current folder:
```
love .
```Note: you may have to specify the full path to the love executable if it is not on your path.
## How to package
Detailed packaging instructions for Windows are documented [here](https://love2d.org/wiki/Game_Distribution).
Essentially, select all files required to run the game, zip them, rename .zip to .love, then concatenate it with love.exe and distribute it will all .dll's (including license) found in the love installation folder:
```batch
::zip game code and assets by hand
copy SuperGame.zip SuperGame.love
copy /b love.exe+SuperGame.love SuperGame.exe
::copy dlls into folder
```