(ON HOLD) Pop.Box is an easy to use GUI library for the LÖVE engine, intended for rapid prototyping.
Go to file
Paul Liverman III 723997fe7a mid-redesign
2015-11-20 03:30:40 -08:00
pop mid-redesign 2015-11-20 03:30:40 -08:00
main.lua mid-redesign 2015-11-20 03:30:40 -08:00
README.md mid-redesign 2015-11-20 03:30:40 -08:00

Pop.Box

Do not mix with Cola.

Pop.Box attempts to make a GUI system for use in the LÖVE engine that is easy to use, requiring as little code as possible to get working, but also extensible, allowing for complex interfaces to be built in it.

I've never written a GUI library before..so we'll see how that goes.

Features

local pop = require "pop"
-- define love callbacks here
local box = pop.box()
  • box is a box (class) for containing things.
  • text is a class for handling text.
  • Nothing else! Is alpha, just started.