A falling block game taking place inside an old radio cassette!
- Gameplay similar to Tetris and Puyo Puyo
- Move around a piece and match corresponding colors
- Any matching line will be taken by the radio, shaken and given back to you
- Beware of the volume! It will constantly go down. Continue matching lines to keep it up!
Keyboard:
- ←, →: move around piece
- ↓: push down piece
- Z: rotate piece clockwise
- X: rotate piece counterclockwise
-
Release build
make release
-
Debug build
make debug
- raylib project should be cloned and located at
../raylib - then compile and link the raylib libraries for web platform via this guide
- in radiofall root
make release # just to have the resources resolved under build/release cd src BUILD_WEB_RESOURCES_PATH=../build/release/radiofall/resources PLATFORM=PLATFORM_WEB make cd .. mv src/radiofall.{html,js,wasm,data} build/release/radiofall/ mv build/release/radiofall/radiofall.html build/release/radiofall/index.html
Spin up a local web server
python -m http.server 8000
then head to http://localhost:8000/build/release/radiofall/radiofall.html
