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/
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 inputReplace 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)