Files
Emil c7e86663d8
MVP checks / mvp (push) Waiting to run
Expand voxel gameplay, lighting, full-height streaming and world imports
Add shared Rust/WASM physics, worker meshing and diagnostics, 64-chunk full-height streaming, atlas texture support, and baseline world import. Document the current implementation and include the supplied in-game lobby screenshot.
2026-09-17 02:10:53 +03:00

8 lines
361 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
# Install once with: rustup target add wasm32-unknown-unknown
# One implementation supplies native authority and browser prediction.
cargo build --locked -p shacraft-physics --target wasm32-unknown-unknown --release
cp target/wasm32-unknown-unknown/release/shacraft_physics.wasm client/physics.wasm