A fork of the original PICOLOVE, an implementation of PICO-8's API in LÖVE
Original is on github at: https://github.com/picolove/picolove
Requires LÖVE 11.x
PICO-8: http://www.lexaloffle.com/pico-8.php
LÖVE: https://love2d.org/
- An implementation of PICO-8's api in LÖVE
- For a fun challenge!
- Allow standalone publishing of PICO-8 games on other platforms
- Should work on mobile devices *
- Configurable controls
- Extendable
- No arbitrary cpu or memory limitations
- No arbitrary code size limitations
- Better debugging tools available
- Open source
- A replacement for PICO-8
- A perfect replica
- No dev tools, no image editor, map editor, sfx editor, music editor
- No modifying or saving carts
- Not memory compatible with PICO-8
- Uses floating point numbers not fixed point
- Uses LuaJIT not lua 5.2
- Memory layout is not complete
ipairs()
,pairs()
standard lua functionsassert(expr,message)
if expr is not true then errors with messageerror(message)
bluescreens with an error messagewarning(message)
prints warning and stacktrace to consolesetfps(fps)
changes the consoles framerate_keyup
,_keydown
,_textinput
allow using direct keyboard input
Replace nocart.p8 with your game, since this is the default cartridge on boot. Text P8 or PNG P8.PNG is supported.
Follow the steps at Android Game Packaging
An additional step when editing AndroidManifest.xml is to remove android:screenOrientation="landscape"
if you would like your game to support orientation rotation (Portrait and Landscape)