Löve Frames - A GUI Library
Re: Löve Frames - A GUI Library
Some things that might be useful:
Radio Button
Tool Tip
Popups (error, alert, question)
Track Bar
Tool bar
Ribbons
Radio Button
Tool Tip
Popups (error, alert, question)
Track Bar
Tool bar
Ribbons
u wot m8
Re: Löve Frames - A GUI Library
you can do popup .. just create a frame with a button on it..
- Nikolai Resokav
- Party member
- Posts: 140
- Joined: Wed Apr 28, 2010 12:51 am
- Location: United States
Re: Löve Frames - A GUI Library
Addressing your list:rokit boy wrote:Some things that might be useful:
Radio Button
Tool Tip
Popups (error, alert, question)
Track Bar
Tool bar
Ribbons
- Radio buttons will be coming in a future update.
- Tool tips are already a part of Löve Frames
- Popups can easily be created with a frame (as vernon mention)
- Track bars are basically sliders, and Löve Frames already has sliders
- Tool bars are useful but would be easy to create without an entire object dedicated to it
- Ribbons are kinda cool but I doubt they will ever be in Löve Frames
Re: Löve Frames - A GUI Library
Wow, this is really really really amazing. I'm blown away by all the features and in general how professional it is. Great work!
-
- Prole
- Posts: 18
- Joined: Fri Dec 16, 2011 11:29 pm
Re: Löve Frames - A GUI Library
Absolutely wonderful.Thank you so much for making this library!
Edit: the love.keypressed function for the demo could be shortened to just one line fromto just
Currently using this for my project and its a breeze so far!
Edit: the love.keypressed function for the demo could be shortened to just one line from
Code: Select all
function love.keypressed(key, unicode)
loveframes.keypressed(key, unicode)
if key == "`" then
local debug = loveframes.config["DEBUG"]
if debug == true then
loveframes.config["DEBUG"] = false
else
loveframes.config["DEBUG"] = true
end
end
end
Code: Select all
function love.keypressed(key, unicode)
loveframes.keypressed(key, unicode)
if key == "`" then
loveframes.config["DEBUG"] = not loveframes.config["DEBUG"]
end
end
Re: Löve Frames - A GUI Library
Thank you for this great library!
I'm considering using it for one of my projects, I need text inputs with multiple lines, does this have one? I can't see it in demo.
I'm considering using it for one of my projects, I need text inputs with multiple lines, does this have one? I can't see it in demo.
- Nikolai Resokav
- Party member
- Posts: 140
- Joined: Wed Apr 28, 2010 12:51 am
- Location: United States
Re: Löve Frames - A GUI Library
Thanks!litearc wrote:Wow, this is really really really amazing. I'm blown away by all the features and in general how professional it is. Great work!
No problem! I'm glad you like it!LiquidDandruff wrote:Absolutely wonderful.Thank you so much for making this library!
Yeah there is a lot of code that still needs to be cleaned up, as this library is still only in it's alpha stages. I'll probably get around to this when I'm done adding features.LiquidDandruff wrote: Edit: the love.keypressed function for the demo could be shortened to just one line fromto justCode: Select all
function love.keypressed(key, unicode) loveframes.keypressed(key, unicode) if key == "`" then local debug = loveframes.config["DEBUG"] if debug == true then loveframes.config["DEBUG"] = false else loveframes.config["DEBUG"] = true end end end
Code: Select all
function love.keypressed(key, unicode) loveframes.keypressed(key, unicode) if key == "`" then loveframes.config["DEBUG"] = not loveframes.config["DEBUG"] end end
Löve Frames does not currently have a multiple line text input, but I have one planned for a future update.osa1 wrote: I'm considering using it for one of my projects, I need text inputs with multiple lines, does this have one? I can't see it in demo.
- childonline
- Prole
- Posts: 15
- Joined: Thu Dec 30, 2010 11:06 am
Re: Löve Frames - A GUI Library
I'm dying of anticipation here.Nikolai Resokav wrote:Löve Frames does not currently have a multiple line text input, but I have one planned for a future update.osa1 wrote: I'm considering using it for one of my projects, I need text inputs with multiple lines, does this have one? I can't see it in demo.
Re: Löve Frames - A GUI Library
How do you turn off the default status window after following the installation procedure for LoveFrames in the docs?
(The one that shows all the system info etc etc etc)
(The one that shows all the system info etc etc etc)
- Nikolai Resokav
- Party member
- Posts: 140
- Joined: Wed Apr 28, 2010 12:51 am
- Location: United States
Re: Löve Frames - A GUI Library
gau_veldt wrote:How do you turn off the default status window after following the installation procedure for LoveFrames in the docs?
(The one that shows all the system info etc etc etc)
Changegau_veldt wrote:How do you turn off the default status window after following the installation procedure for LoveFrames in the docs?
(The one that shows all the system info etc etc etc)
Code: Select all
loveframes.config["DEBUG"] = true
Code: Select all
loveframes.config["DEBUG"] = false
Who is online
Users browsing this forum: Ahrefs [Bot], Bing [Bot] and 0 guests