Drop the archived old/ tree, root AI notes, splashgame.md (Arcade lives in the private sandbox), widgets-dll leftovers, and LAN/oracle helper scripts. Move download_*.sh into tools/, and move sim/math out of libs/game/ so the public repo no longer has a game/ directory. Also quiet first-party compile noise and skip asset-ui tests that need sandbox kits or uncommitted fixtures.
20 lines
520 B
Bash
Executable file
20 lines
520 B
Bash
Executable file
#!/bin/bash
|
|
# Download sample Gaussian Splat files in PLY and SOG formats
|
|
|
|
set -e
|
|
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
mkdir -p local
|
|
|
|
echo "Downloading PLY gaussian splat (biker.ply)..."
|
|
curl -L -o local/biker.ply \
|
|
"https://raw.githubusercontent.com/willeastcott/assets/main/biker.ply"
|
|
|
|
echo "Downloading SOG gaussian splat (toy-cat.sog)..."
|
|
curl -L -o local/toy-cat.sog \
|
|
"https://developer.playcanvas.com/assets/toy-cat.sog"
|
|
|
|
echo "Done."
|
|
ls -lh local/biker.ply local/toy-cat.sog
|