MVP checks / mvp (push) Waiting to run
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.
8 lines
361 B
Bash
Executable File
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
|