Pedro Gimeno d344155ecb Update to love2d 11.x, change server finder URL 3 anos atrás
..
License.txt 1253b9f30a Added dedicated server. 10 anos atrás
README.md cddef4910b Added refresh button to server list. 10 anos atrás
colors.lua 26fae6d3ff First rough mouse controlling is now possible. 10 anos atrás
init.lua 26fae6d3ff First rough mouse controlling is now possible. 10 anos atrás
inputBlock.lua d344155ecb Update to love2d 11.x, change server finder URL 3 anos atrás
main.lua 6452852e45 Added ui. 10 anos atrás
middleclass.lua 6452852e45 Added ui. 10 anos atrás
panel.lua d344155ecb Update to love2d 11.x, change server finder URL 3 anos atrás
punchUI.lua d344155ecb Update to love2d 11.x, change server finder URL 3 anos atrás
screen.lua eb7378956d Enhanced mouse click on input boxes. 10 anos atrás
textBlock.lua d344155ecb Update to love2d 11.x, change server finder URL 3 anos atrás
utility.lua 26fae6d3ff First rough mouse controlling is now possible. 10 anos atrás

README.md

PunchUI

A simple User Interface library for the Löve2D engine. No mouse needed - just keyboard controlled.

Update: Mouse control is now optionally available, by calling ui:mousemoved( love.mouse.getPosition() ) once a frame and ui:mousepressed(x, y, button) inside the love.mousepressed event.

Features:

  • no mouse needed
  • resizes content to panel size automatically
  • multiline input box, including password functionality.
  • add actions which are assigned to keys (keys are displayed next to action name)
  • (todo!) tooltip if you press shift + function key
  • message boxes, with header, text and multiple possible answers
  • word wrap
  • multi-colour text boxes
  • drop-down menus

Example is included in 'main.lua'. Install Love2D, go to the folder and run: love .

License:

Released under the MIT license, see "License.txt".

Credits:

  • This library uses Kikito's awesome middleclass library.