Search found 74 matches

by riidom
Mon Oct 06, 2014 7:31 am
Forum: General
Topic: [QUESTION]About Roguelikes in Löve and the Astray library
Replies: 14
Views: 6368

Re: [QUESTION]About Roguelikes in Löve and the Astray librar

Yes I have used both of them, jumper is no problem to use, just read the documentation carefully. The rotLove port comes in two versions, one is modular (if you havent checked the github page yet, rotLove is a big collection of small libs tailored around rl's), the other is one big file that include...
by riidom
Sun Oct 05, 2014 8:23 pm
Forum: General
Topic: [QUESTION]About Roguelikes in Löve and the Astray library
Replies: 14
Views: 6368

Re: [QUESTION]About Roguelikes in Löve and the Astray librar

there is another lib you might find helpful:
https://github.com/paulofmandown/rotLove

I also found Roland Yonabas "jumper" of greatest usability:
https://github.com/Yonaba/Jumper
by riidom
Sun Sep 28, 2014 11:47 am
Forum: Support and Development
Topic: Loveframes Text:GetLines()
Replies: 4
Views: 3360

Re: Loveframes Text:GetLines()

Thanks for the quick fix, works like a charm!
by riidom
Sat Sep 27, 2014 11:35 am
Forum: Support and Development
Topic: Loveframes Text:GetLines()
Replies: 4
Views: 3360

Re: Loveframes Text:GetLines()

Oh well, thanks for looking in the source, I could have get the idea to do so myself :) It seems to be very recent and not fully done, on top of file it says: -- note: the text wrapping of this object is experimental and not final Good there is a lot of other stuff for me to add as well in meantime.
by riidom
Sat Sep 27, 2014 10:32 am
Forum: Support and Development
Topic: Loveframes Text:GetLines()
Replies: 4
Views: 3360

Loveframes Text:GetLines()

Hi, I have a problem with the GetLines() function from the text object. It returns always nil. function Node:initialize(px, py, pw, ph) local SliW = 5 -- width of slider buttons local MinW = 50 -- minimum width of whole node -- Init of base and sub-elements local base = loveframes.Create("panel...
by riidom
Sat Jun 28, 2014 9:47 am
Forum: Games and Creations
Topic: Metanet Hunter: REMIX (75% Off!)
Replies: 27
Views: 24684

Re: Metanet Hunter: REMIX (NOW IN BETA! WOO!)

Yes, looks really good. Themes differ a lot, makes it interesting.
One critique, though:
On the 2ndlast image (the black/grey subterran one) the background tile is too busy.
by riidom
Sat Jun 28, 2014 9:44 am
Forum: General
Topic: How do people create their .loves and .exes? (Discussion)
Replies: 13
Views: 7078

Re: How do people create their .loves and .exes? (Discussion

I'm with Robin here, I do it so rarely, I choose the cheapest way.
I'd like to ask a follow-up question, though:
What are the reasons for creating .love's or .exe's so often, that there is a desire to automate it?
Or asked different, what are the occasions where you do it?
by riidom
Mon Jun 23, 2014 10:47 pm
Forum: Support and Development
Topic: Tables and For
Replies: 4
Views: 2441

Re: Tables and For

Hi, some things can surely be written shorter: queen = {'1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24','25'} --is same as.. queen = { } --need to declare queen as table first, before filling in values at the indices, or error; if you do...
by riidom
Mon Jun 16, 2014 1:09 am
Forum: Libraries and Tools
Topic: [library] tween 2.0 - tweening for Lua
Replies: 2
Views: 2438

Re: [library] tween 2.0 - tweening for Lua

This looks interesting and inviting to use, I have an idea where I could use it in my project already. I wonder, should in the code example you posted first, the 3rd line look like this? local label_tween = tween.new(5, label, {x=300, y=200, color={255,255,255}}) The example on github makes me think...
by riidom
Sun May 25, 2014 9:51 am
Forum: General
Topic: LOVE performance (framerate)
Replies: 12
Views: 6814

Re: LOVE performance (framerate)

It might be your OS too.. I got a comparable laptop (actually even weaker, checked the p1620 specs) and I don't discover your problems. I will probably earn not much understanding when I suggest to upgrade Win8 to WinXP, but some Linux should work. Before all this it should be made clear that the OS...