Search found 3549 matches

by pgimeno
Fri Apr 20, 2018 1:47 pm
Forum: General
Topic: LÖVE 11.1 released!
Replies: 41
Views: 97914

Re: LÖVE 11.1 released!

Incidentally, I discovered that running (from the Terminal) ./love works where love does not. The latter seems to make it look for a command or bash script, where the former tells it to open the file as an executable. Just in case that's helpful to anyone. :) It's standard practice in Linux that co...
by pgimeno
Thu Apr 19, 2018 9:20 am
Forum: Support and Development
Topic: I need help with Gspot
Replies: 7
Views: 3362

Re: I need help with Gspot

I've merged the multiline fix now.
by pgimeno
Wed Apr 18, 2018 6:57 pm
Forum: Support and Development
Topic: newArrayImage
Replies: 3
Views: 2260

Re: newArrayImage

Isn't a batch just a limited canvas - the limitation is that all the sprites have to be the same size? To make any change to the batch, you have to recreate it - just like drawing everything again to a canvas. With a canvas, the sprites can be any size. Any speed advantage? Don't think so. What am ...
by pgimeno
Tue Apr 17, 2018 9:31 pm
Forum: Support and Development
Topic: I need help with Gspot
Replies: 7
Views: 3362

Re: I need help with Gspot

For dropping the item, I've add a small button next to the item but how can I update the list? First, you need to remove the element and the extra button with gui:rem(element). Then you will need to reposition the other elements. You need to rethink your code a bit, though: - You're creating a new ...
by pgimeno
Tue Apr 17, 2018 12:30 pm
Forum: Support and Development
Topic: I need help with Gspot
Replies: 7
Views: 3362

Re: I need help with Gspot

One more clarification. When you say menu, do you mean the tooltip text? that is, the little window with a text? If you mean just that, you can use the tip property instead, like this: display.item.tip = "This is a" .. (e:match("^[aeio]") and "n " or " ") . . ...
by pgimeno
Tue Apr 17, 2018 12:01 am
Forum: Support and Development
Topic: I need help with Gspot
Replies: 7
Views: 3362

Re: I need help with Gspot

Hello, welcome to the forums.

I'm not sure I understand. My understanding is that you want to have a series of items as names in a list, and when you hover over one, a menu appears and you can select from it, or it disappears if you move the mouse. Is that right?
by pgimeno
Mon Apr 16, 2018 11:04 pm
Forum: Support and Development
Topic: Error while loading game
Replies: 9
Views: 24018

Re: Error while loading game

@poojan This page might also help:

https://love2d.org/wiki/Getting_Started

@Stifu Windows accepts forward slashes as well as backslashes (but cmd.exe doesn't because that's used for options)
by pgimeno
Mon Apr 16, 2018 10:58 pm
Forum: General
Topic: Why faking 3D nowadays?
Replies: 46
Views: 39717

Re: Why faking 3D nowadays?

It gives me errors on lines 54, 55 95 etc. "Wrong operand types", "no matched overloaded function found" for "sqrt" invocation etc. I haven't had any issues with any 3d app until I tried to use some shaders in love2d on Android. Ah, okay. So I guess even the default sh...
by pgimeno
Mon Apr 16, 2018 11:08 am
Forum: Support and Development
Topic: LOVE2D debugging trouble with debug.debug()
Replies: 2
Views: 1840

Re: LOVE2D debugging trouble with debug.debug()

I've used lovebird in past, https://github.com/rxi/lovebird which gives you a web interface.
by pgimeno
Mon Apr 16, 2018 11:03 am
Forum: Support and Development
Topic: 11 version setColor BUG
Replies: 10
Views: 5944

Re: 11 version setColor BUG

You can use a shader. I gave an example here: viewtopic.php?f=3&t=85051&start=80#p219902