Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 1.05 KB

README.md

File metadata and controls

19 lines (18 loc) · 1.05 KB

Isometric Minecraft

minecraft but 2d or 3d? both? a very early prototype even more than early alpha versions of minecraft icon

Testing

WASM

# pre
rustup target add wasm32-unknown-unknown
cargo install basic-http-server # or any other way of serving
#
cargo build --release --target wasm32-unkown-unkown
basic-http-server . # or any other way of serving

# the template index.html already has a refrence to your outputed .wasm file
# note that for github deploying we dont use this index.html as of now

Native

same as above without the target part, just note that this game for reasons i do not understand (bugs i am too lazy to fix) is not able to run in debug mode and should only be ran in optimized --release mode this means that debugging is not really possible :( until i fix the stack overflow that happens in non optimized builds.