As many around here I've found the four, current, issues of the PICO-8 fanzine beyond inspiring, so I designed my first semi-serious project to celebrate inventiveness of everyone involved in the platform.
P.S. If you've just discovered the series maybe don't look at #2 too intently :)
When you do, give all props to johanvinet, a true pixel art wiz.
The premise of a jigsaw puzzle is deceptively simple:
-
take a fully formed picture
-
scramble the pieces to make an undistinguishable mess



Hello!
How to change the current music pattern, while maintaining tempo?
In my game, I have my music looping pattern 0,1,2. When an enemy enters the map, I would like the pattern 4 to play, without loosing tempo. Ideally, the pattern change would happen on bar.
I have succeeded using function stat(407) to read the last track of my pattern and detect the beats. However, when I call music(4) inside _update() to switch the current music, the transition happens too late, and I hear shortly the beginning of the next bar of the current music, and then first note of the new music. In short, when stat(407) returns 1, it is too late to schedule a music change.
I would need a hook or callback in the music sync code to peek the timing, and post the music change exactly at the right moment to have smooth transitions. How to do that?
Thanks!


Hey again!
I've recently assembled the raspberry pi powered pico8 game console that I have been showing off, and I'm proud to show that it is fully capable of running splore now! We still have quite a lot of tweaks to make before launch, but it's great to see it coming together. Now if you would excuse me as I go spend a couple of hours playing games...
I can't embed videos here, so checkout the reddit post for an actual gameplay video :))




A quick phased platform editor, play challenges from other players and create your own maps to share.
Made for Pico8 as a prototype to develop my future games.
Shortcuts:
Left mouse button: Draw tile
Right mouse button: Clear tile
G: God mode.
I: Editor palette.
C: Character selector.
I: Activate manual(mouse) menu.
B: Save map.
M: Open/Close Minimap.
M+B (In that order): Clear map.
A, W, D, S: Movement keys.
Spacebar: Jump.
1,2,3,4,5,6,7,8,9,j,k,l: Tile editor selector.
Navigate through menu: Click on the gear, and select your menu or click on the gear again to close the menu.
Within menu, if you Left mouse button the cartridge option, it will save, if you Right mouse button, it will clear them map (reversible through Ctrl + R)



Controls
Run: left, right
Jump: Z
Swap: X
Menu (restart options): P
About
Based on the pick up mechanic from Mini and Max in UFO 50, I made a sketch where a character swapped with walls. Then I kept working on it and here we are.
This thread started in the WIP forum, so the carts below are old builds you can inspect for historical purposes. The cart at the top is the latest version.
I consider this game finished, but it has about 2k tokens free, some map space, and some sprite space free for further experiments.
ORIGINAL 1ST POST BELOW... |






This probably has a bunch of bugs and I'm not sure what it's good for, but, well, here it is anyway.
Controls
- Left click to paint with foreground color, right click to paint with background color. Same buttons to choose colors from the palette on the right.
- Slider on the right controls brush size.
- "x" button at bottom of right toolbar replaces whole scene with background color.
- Ctrl-z to undo. Undo stack size is 16. (edit: This seems to be broken on the web build for some reason?? Works okay locally.)
- Ctrl-p to replace canvas with wave-warped canvas. This is undo-able.
x
key swaps foreground/background color.- Brush size affects wave height.


THE STARS ARE COUNTING ON YOU!
Take control of the galaxy and crush your enemies without uttering a single word—show them who truly rules the stars!
HOW TO PLAY
- Arrow Keys: Steer your ship
- X Key: Fire your weapons
UNITE AND CONQUER!
Collect up to six stars to join you in battle and dominate the cosmos.

SOUNDTRACKS
- Like Clockwork
- Robot Dance
Both tracks are from the free pack Pico 8 Tunes Vol. 2.
WE WANT YOUR FEEDBACK!
Spotted a bug? Got ideas for improvement? Don’t hesitate to share your thoughts—I’d love to hear from you!

Is a Japan flag in 100 CHARS
im works my new game jam.
Source Code
a=0s=0 function _update()s+=1 a+=1if a > 24 then s=24 a=24 end cls(7) circfill(64,64,s,8)flip(♥) end |