Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/Larpon/puzzle_vibes

A jigsaw-like puzzle game written in V
https://github.com/Larpon/puzzle_vibes

2d 2d-game game shy v v-language vlang

Last synced: about 2 months ago
JSON representation

A jigsaw-like puzzle game written in V

Awesome Lists containing this project

README

        

# Puzzle Vibes

A "jigsaw"-like puzzle game written in V.

Download and play pre-built versions of the game from itch.io

The source code of Puzzle Vibes is free software covered by the [GPLv3 license](LICENSE).

Some in-game assets are licensed individually, please see [assets/images/images.txt](assets/images/images.txt),
[assets/music/music.txt](assets/music/music.txt) and [assets/sfx/sfx.txt](assets/sfx/sfx.txt).

The Puzzle Vibes logo and icon is Copyright (c) 2022 Lars Pontoppidan.

# Running the game

To build and run the game please install [`shy`](https://github.com/Larpon/shy) and then in the project root do:

Currently there's some bug with V's garbage collector that makes SDL crash, to avoid this use:

```bash
v -d sdl_memery_no_gc run .
```

If this is someday fixed everything should run fine with, just:

```bash
v run .
```