Search found 501 matches

by dusoft
Wed Apr 17, 2024 10:42 am
Forum: Support and Development
Topic: Benchmark - put every function inside a object or inside a helper object
Replies: 3
Views: 122

Re: Benchmark - put every function inside a object or inside a helper object

Looks like a microoptimization to me.

It's rather a programming style question.
by dusoft
Tue Apr 16, 2024 8:14 pm
Forum: Support and Development
Topic: hump.timer is imprecise, so beware
Replies: 1
Views: 150

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: 3
Views: 401

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: 192

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: 309

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: 309

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: 175421

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: 331

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: 482

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.