Search found 1938 matches

by Nixola
Sun Apr 29, 2018 8:02 am
Forum: General
Topic: Love2d Timestep and keypress (with repeat) not updating correctly?
Replies: 13
Views: 12349

Re: Love2d Timestep and keypress (with repeat) not updating correctly?

zorg wrote: Sun Apr 29, 2018 6:24 amNow, the important bit, setKeyRepeat is cancer because it uses the OS' own repeat detection rates, which is basically useless for any and all purposes, even though people like to say otherwise.
As far as I can tell, it's only useful in GUIs or other situations where the user is typing.
by Nixola
Tue Apr 17, 2018 7:17 pm
Forum: Support and Development
Topic: love.math.random not working on iOS in Love V 11.1
Replies: 3
Views: 3514

Re: love.math.random not working on iOS in Love V 11.1

You have LÖVE 0.10 on your pc, but 11 on your iOS device. The color range changed from 0-255 to 0-1, meaning you need to divide your result by 255 in order to make it work.
by Nixola
Sat Apr 14, 2018 7:11 am
Forum: Support and Development
Topic: 11.0 - Some errors causes window to immediately close
Replies: 7
Views: 5660

Re: 11.0 - Some errors causes window to immediately close

I know it's annoying, but running the game using lovec.exe from a terminal should allow you to see the errors, at least as a temporary workaround before the issue is fixed.
by Nixola
Mon Apr 09, 2018 9:57 pm
Forum: Support and Development
Topic: Is there an effective way to cut down lag?
Replies: 26
Views: 18377

Re: Is there an effective way to cut down lag?

I can't seem to notice any difference between 650x650 and 2560x1440 (which, as of now, is the highest I can go), so I'm afraid I'm unable to reproduce the issue and thus unable to test it.
by Nixola
Mon Apr 09, 2018 8:40 pm
Forum: Support and Development
Topic: Is there an effective way to cut down lag?
Replies: 26
Views: 18377

Re: Is there an effective way to cut down lag?

One doesn't necessarily need to read all of the code to figure out the issue; plus, two thousand lines of code may be a lot to one person but close to nothing for another one. I'd say you should upload the code (if you want to, of course) and let people decide whether they want to try, especially si...
by Nixola
Mon Apr 09, 2018 4:34 pm
Forum: General
Topic: 11.0 bugs
Replies: 47
Views: 66428

Re: 11.0 bugs

You should probably not rely on == to compare floats from different sources. The correct way to compare them depends on their representation, which means it depends on the image format. In case of a normal 8bpc canvas/imagedata/whatever the only actual possible values will be [0-255]/255, which mean...
by Nixola
Thu Apr 05, 2018 5:31 pm
Forum: Ports
Topic: LÖVE Steamlink port?
Replies: 4
Views: 24499

Re: LÖVE Steamlink port?

You can also run native apps. Like mame, kodi...this eliminates the lag. Crap. Had I known about that, I would've bought it without a second thought a few days ago, when it was bundled for free (plus shipping) with a few games I was interested in anyway... I'll get it next time I see a similar offe...
by Nixola
Mon Apr 02, 2018 9:00 am
Forum: General
Topic: LÖVE 11.0 released!
Replies: 98
Views: 109086

Re: LÖVE 11.0 released!

After the update, some color combinations in graphics.setColor() not work, simple like 255 and 0 do work: function love.draw() love.graphics.setBackgroundColor(255, 255, 255) love.graphics.setColor(255, 0, 255, 1) love.graphics.polygon('fill', 100, 100, 200, 100, 150, 200) end https://love2d.org/im...
by Nixola
Sun Apr 01, 2018 10:12 am
Forum: General
Topic: Autobuild LÖVE games on Travis CI
Replies: 9
Views: 7124

Re: Autobuild LÖVE games on Travis CI

Please do not commit the binaries. Having to download hundreds of megabytes just to get a ~10MB binary file is awful.
by Nixola
Sun Mar 04, 2018 10:17 am
Forum: Support and Development
Topic: [SOLVED] Problem with file reading
Replies: 9
Views: 6952

Re: Problem of bluring with scaling

You need to call that function before you load any image. I tried running your .love file, but I get the error "Could not open file Graphics/tileset0[].png. Does not exist." (where [] is a character not supported by the font", which shows up as ".png. Does not exist.Could not ope...