Files
blackroad-metaverse/deploy.sh
Alexa Louise 4139f10660 ULTIMATE BLACKROAD METAVERSE - Complete Integration
Complete infinite 3D universe with all systems integrated:

Features:
- Particle effects (rain, snow, fireflies with physics)
- Day/night cycle (dynamic sun, sky colors, time display)
- Infinite biome generation (6 biomes, chunk loading)
- Transportation system (teleport, flying, fast travel)
- Living AI agents (Alice, Aria, Lucidia in 3D)
- Perlin noise terrain (procedural, deterministic)
- Glass morphism UI (modern, beautiful)

Technical:
- Single 40KB HTML file with entire metaverse
- Three.js r160 + WebGL 2.0
- 60 FPS target performance
- Up to 3,100 particles active
- ~25 chunks loaded in view
- Custom Perlin noise implementation

Controls:
- WASD + Mouse - Move and look
- F - Toggle flying
- T - Teleport menu
- R/N/G - Rain/Snow/Fireflies

Live: https://ba23b228.blackroad-metaverse.pages.dev

Built with 💚 for infinite exploration and freedom

🌌 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-21 21:52:46 -06:00

18 lines
410 B
Bash
Executable File

#!/bin/bash
# BlackRoad Metaverse Deployment Script
echo "🌌 Deploying BlackRoad Metaverse to blackroad.io..."
echo ""
# Deploy to Cloudflare Pages
wrangler pages deploy . --project-name=blackroad-metaverse --branch=main
echo ""
echo "✅ Deployment complete!"
echo ""
echo "🔗 Live at: https://blackroad.io"
echo "📊 Dashboard: https://dash.cloudflare.com"
echo ""
echo "🌟 The metaverse awaits!"