This repository was archived by the owner on Jan 7, 2023. It is now read-only.
LoveDOS 0.2.0
- Adds support for more standard image formats (png, bmp, tga etc.) - replaces old pcx system
- Adds support for truetype fonts - replaces old bitmap font system
- Adds mouse support (
love.mouse
module and mouse callbacks) - Adds virtual filesystem support (
love.filesystem
) - Adds
love.event
module - Adds
love.textinput()
callback - Adds
love.quit()
callback - Adds
love.keyboard.setKeyRepeat()
andisrepeat
param tokeypressed
callback - Adds in-built packaging support:
love --pack DIRNAME OUTFILE.EXE
- Adds proper love.errhand error screen
- Adds
flip
parameter tolove.graphics.draw()
- Changes palette to automatically set from used colors instead of needing to be set manually
- Changes all color functions to use
red, green, blue
instead of color index - Changes the embedded font
- Changes keyboard functions to use key string instead of scancode ints
- Removes
love.graphics.getPalette()
andlove.graphics.setPalette()
- Removes
love.graphics.setFlip()
andlove.graphics.getFlip()
- Removes
Image:mapPixel()