/pico-15

Primary LanguageLua

Messing around with the PICO-8.

Games

Hundstein

An experiment using raycasting to create a Wolfenstein 3D like engine in PICO-8.

Lander

Made by following one of the tutorials in Game Development in PICO-8 by MBoffin. Land the spaceship on the pad.

Development (OS X)

Create a link in PICO-8's cart directory to the src dir of this repo:

ln -s ~/projects/pico-8/src ~/Library/Application\ Support/pico-8/carts/gh

To build cartridges, first build the PNG (in the PNG version, the includes are flattened into one file). Then load the PNG and build the HTML and JS files from that.

# in PICO-8:
load gamename
save gamename.p8.png
load gamename.p8.png
export gamename.html
load gamename

# from command line:
mv src/gamename.p8.png carts/
mv src/gamename.html docs/
mv src/gamename.js docs/

Resources