Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.31 KB

File metadata and controls

55 lines (38 loc) · 1.31 KB

Alchemist's Apprentice

The Aclhemist's Apprentice Screenshot

GitHub Bevy

Play

Download

You can download the latest native clients from the releases page here.

Browser

GitHub Pages

Hosted on GitHub pages: Play Here

itch.io

https://tsarbomb.itch.io/alchemists-apprentice

Development

Run

cargo run

Build

cargo build

WASM Build

To build and run the WASM/WebGL version of the game:

Build

$ rustup target install wasm32-unknown-unknown
$ cargo build --release --target wasm32-unknown-unknown
$ wasm-bindgen --out-dir ./out/ --target web .\target\wasm32-unknown-unknown\release\alchemist_apprentice.wasm

Server

There is an included html file to help you serve the game.

Any web server can accomplish this, but for ease we can use the serve npm package.

npx serve .