Flappy bird style game made with the Kaplay library and Tauri. It features a basic save system where your best score is saved on disk.
Supports multiple inputs (Mouse, Keyboard and Gamepad)
Tutorial on how to build this here
Learn more about Tauri here
- Make sure you have completed the Tauri prerequisites
- Make sure you have Node.js installed.
- Clone the repo.
- Once in the repo, do
npm install
to install the required dependencies. - Run the project in dev by doing
npm run dev
.
- Build the project by doing
npm run build
. - After the build is complete go to
target > release > bundle > msi
. - Distribute the installer on sites like itch.io or on Steam.
Note : It's important to distribute the installer and not the .exe available in target > release > Your Game.exe
because Tauri relies on WebView2 to be present on the system.The installer will make sure to download and install it on the user's system if not already there. This is not the case for the .exe.
Kaplay is a very high-level library for making games. It allows you to make games really fast. It was previously called Kaboom.
Learn more about Kaplay here