You are a star that jumps (video gaming).
Soundtrack: youtube.com/watch?v=qi2jSi0W4JM
Move: arrows or ESDF
Jump: Z/X/N/M
Addition options in menu (P/Enter):
- Adjust wobble intensity
- Show timer
- Skip screen
- Reset progress
Big thanks to friends and twitter pals for the testing, support and feedback <3
A piano controlled by a keyboard or MIDI controller.
left/right: change instrument.
up/down: change input mode.
MIDI input (Mac and Windows)
Use this program to use a MIDI controller. It converts MIDI inputs into keyboard inputs.
Keyboard input
This approach approximates a piano layout using the keyboard (like in PICO-8's SFX editor).
Turn with the left and right arrows keys.
If you fall to the ground you can restart the cart (⏸ -> "reset cart").
x=9y=9u=0v=0 function _update60()cls(7)v+=.07l=sqrt(u*u+v*v)a=atan2(u,v) if(btn(0))a+=.014 if(btn(1))a-=.014 w=.03-cos(a*2)/50u=l*cos(a)v=l*sin(a)x=(x+u+8)%144-8 y+=v if(y>120)u*=.9v/=-2y=120 for b=a-w,a+w,w*2 do e=x-8*cos(b)line(x,121,e,121,6)line(x,y,e,y-8*sin(b),0)end end |
Annotated:
Experimenting with a simple voxel renderer.
The bike is generated in code!
There's an option in the pause menu (p) to use enable camera controls:
arrows: pan
z+arrows: rotate
x+up/down: zoom
![]() 232 ![]() ![]() |
A sequel to Marballs, now with verticality, orbs and jump pads!
Controls:
Roll around with the arrow keys, jump with Z and use X to pause and restart.
Use the pause menu (ESC or enter) to return to the main menu.
To swap to 45° controls choose "swap controls" in the pause menu.
Custom Level Packs
Create and share your own levels using the custom cart below!
A simple Marble Madness clone with three levels.
Move with the arrow keys, jump with Z and pause with X.
Hope you enjoy it :)
Some things I might add:
- More levels
- More special tiles
- Traditional isometric controls as an option (eg right arrow = move down-right)