This is a puzzle game, main mechanic of which involves flipping around a piece of dice! Depending on which number will be facing up after that flip, the level will change.
This project started out as an entry for the GMTK (Game Maker's Tool Kit) game jam of 2022. The theme of the jam was "Roll of the dice". You can find the original submission on the jam website.
After receiving some small positive feedback, I decided to finish this game.
Right now the game is using the bevy game engine version 0.8.1, along with some third party plugins. For complete list of dependencies see the Cargo.toml
manifest file, located in the project root.
The levels of the game were created via the tiled level editor.
The game has different modes you can boot it up in. For more info simply run the game like this:
game_excutable --help
Windows | Linux | MAC |
---|---|---|
%appdata%\SeptemModi\gluttony | $XDG_DATA_HOME/gluttony1 | Library/Application Support/SeptemMody.gluttony |
The game is still under active development. Since it is my first game project, I can't really guarantee when it will be out, but I am planning to have some key work done by the end of October.
The game is avaliable for free under the conditions of the MIT license. There are 2 ways for you to get a build at the moment.
- Go to the latest release page
- Pick the build, that matches your platform, according to this table (apologies for the inconvenient names, that'll be fixed)
Windows | Linux | MAC |
---|---|---|
my_game-v0.8.1-windows | my_game-v0.8.1-ubuntu | my_game-v0.8.1-darwin |
- Clone the repository and select the branch you want to build2
- Install Rust with version not older than 1.64.x. Installation guide: https://www.rust-lang.org/tools/install
- Make sure you have
cargo
installed - If you are building on Linux, make sure you have
libasound2-dev
andlibudev-dev
installed (these packages are required by the bevy game engine) - Run
cargo build --release
- The result of the build is a single executable located in
target/release
. Alternatively, you can run the game simply by writingcargo run