Search found 499 matches

by dusoft
Tue Apr 16, 2024 8:14 pm
Forum: Support and Development
Topic: hump.timer is imprecise, so beware
Replies: 0
Views: 5

hump.timer is imprecise, so beware

I have been using hump libraries including gamestate and timer and they worked quite well. However once I needed precise timing, hump.timer failed most of the time. Sometimes the tweening transitions were not finished, other times they went further than requested. Supposedly by the docs for Timer.af...
by dusoft
Tue Apr 16, 2024 8:08 pm
Forum: Libraries and Tools
Topic: Rasterizing polygons into images
Replies: 2
Views: 60

Re: Rasterizing polygons into images

Magic.
by dusoft
Fri Apr 12, 2024 5:12 pm
Forum: Libraries and Tools
Topic: Global environment browser
Replies: 3
Views: 184

Re: Global environment browser

Possibly not much use to a lot of people but I found myself wanting to interrogate LÖVE to see all the modules and variables and ended up making this little browser. Click on the name of any table to drill down. "But," I hear you ask, "if I wanted to know that stuff, why wouldn't I j...
by dusoft
Sun Apr 07, 2024 8:37 pm
Forum: General
Topic: Audio just stopped playing in all love programs
Replies: 3
Views: 255

Re: Audio just stopped playing in all love programs

Glad that worked.
by dusoft
Sun Apr 07, 2024 10:38 am
Forum: General
Topic: Audio just stopped playing in all love programs
Replies: 3
Views: 255

Re: Audio just stopped playing in all love programs

That app/channel might be muted, Linux uses separate outputs (pulse audio) for each audio source and each audio output can be individually muted. Go to application volumes in systray and check that.
by dusoft
Sat Apr 06, 2024 9:53 am
Forum: General
Topic: LÖVE 11.5 released!
Replies: 19
Views: 174054

Re: LÖVE 11.5 released!

What system, provide details on how you launch it (graphical UI, from console etc.)
by dusoft
Wed Apr 03, 2024 10:33 pm
Forum: Support and Development
Topic: Different ways to adjust audio
Replies: 4
Views: 285

Re: Different ways to adjust audio

I would recommend maybe going over code of these libs: https://github.com/Ulydev/wave (If I understand it already provides pitch modulation etc.) https://github.com/tesselode/ripple (This one has some effects) I haven't studied the code, but I would start here for some inspiration and tips. Reverb i...
by dusoft
Thu Mar 28, 2024 8:57 am
Forum: General
Topic: How can I learn Lua and Love2D?
Replies: 4
Views: 449

Re: How can I learn Lua and Love2D?

You can just learn LOVE and find things of Lua as you go. You will have to learn common things like table handling, loops etc.
by dusoft
Sun Mar 24, 2024 8:41 am
Forum: Libraries and Tools
Topic: Fast 2D point-in-polygon test
Replies: 13
Views: 11706

Re: Fast 2D point-in-polygon test

You can have a body with multiple chained polygons (fixtures) so you could test iterating over all of them. But yes, concave only, the whole Box2D model mostly depends on that assumption.