Search found 192 matches

by trubblegum
Sun Feb 26, 2012 11:04 pm
Forum: Libraries and Tools
Topic: Quickie [was: Immediate Mode Gui]
Replies: 70
Views: 54812

Re: Quickie [was: Immediate Mode Gui]

still plugging away, thanks to having got the lib from github. now trying to make a scrollable set of options, out of a slider and a stack of buttons. slider = {value = 1, max = 1, vertical = true, values = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20}} function love.update...
by trubblegum
Thu Feb 23, 2012 3:39 pm
Forum: Libraries and Tools
Topic: Quickie [was: Immediate Mode Gui]
Replies: 70
Views: 54812

Re: Quickie [was: Immediate Mode Gui]

When I type in one field, text appears in both fields :death: local gui = require('quickie') function love.load() love.graphics.setFont(love.graphics.newFont('georgia.ttf', 10)) end local state = 'login' local login = {} login.username = {text = '', cursor = 0} login.password = {text = '', cursor = ...