Search found 9 matches

by manadream
Sun Nov 07, 2021 10:42 pm
Forum: Games and Creations
Topic: Shell Out Showdown - A hectic, food-fight, reverse battle-royale platformer
Replies: 0
Views: 12143

Shell Out Showdown - A hectic, food-fight, reverse battle-royale platformer

Hey y'all! I've been using LÖVE to work on my projects for the past 2 years or so, and I'm super excited to share the first project that I've released on Steam! It's Shell Out Showdown , a hectic, food-fight, reverse battle royale set in the near future. Take on the role of a sapient vending machine...
by manadream
Sat Sep 05, 2020 8:14 am
Forum: Support and Development
Topic: XM Tracker File Resampling Setting?
Replies: 8
Views: 6950

Re: XM Tracker File Resampling Setting?

Ah, I see, I see. Okay cool. If I find the time I may give it a test on Windows myself, and if I do I'll be sure to post here with my results. (I don't have a Windows machine on hand, but a friend does so I might eventually give it a shot).
by manadream
Sat Sep 05, 2020 6:47 am
Forum: Support and Development
Topic: XM Tracker File Resampling Setting?
Replies: 8
Views: 6950

Re: XM Tracker File Resampling Setting?

Thanks to you both for the info and clarification. I see how I was mistaken and confused. That said, The reason it "sounds better" is mostly subjective... the fact being that interpolating samples that have low sampling rates means removing high-end artifacts from the sound; in some sample...
by manadream
Tue Aug 25, 2020 7:50 pm
Forum: Support and Development
Topic: XM Tracker File Resampling Setting?
Replies: 8
Views: 6950

Re: XM Tracker File Resampling Setting?

Okay, thanks for that clarification. Though I am confused by no resampling being the lowest quality, it doesn't seem that way to me in terms of sound quality. No interpolation preserves the sample quality and does not make it sound flat or altered in any way. That said, the resampling algorithm bein...
by manadream
Tue Aug 25, 2020 7:37 pm
Forum: Support and Development
Topic: XM Tracker File Resampling Setting?
Replies: 8
Views: 6950

XM Tracker File Resampling Setting?

Hello there, I've finally gotten around to actually trying to get my XM files working properly in love again (see previous thread ), and everything is going along just fine other than a resampling problem I'm having. When I'm making/listening to my tracker files (XM files made in MilkyTracker) I set...
by manadream
Fri Oct 11, 2019 7:38 pm
Forum: Support and Development
Topic: More granular control of music loops and using tracker files
Replies: 11
Views: 8214

Re: More granular control of music loops and using tracker files

Alright, so I was able to make some modifications to my code based on people's replies (like putting it all on a separate thread and whatnot) and I met all my requirements for looping and music control in general. The last bit that solved it was knowing that decoder:seek() takes seconds not samples,...
by manadream
Tue Oct 08, 2019 6:20 am
Forum: Support and Development
Topic: More granular control of music loops and using tracker files
Replies: 11
Views: 8214

Re: More granular control of music loops and using tracker files

Oh, I see. Then my problem is that I'm calling seek with samples instead of seconds. That's super helpful to know, thanks. I'll change that and see how it works.
by manadream
Tue Oct 08, 2019 2:08 am
Forum: Support and Development
Topic: More granular control of music loops and using tracker files
Replies: 11
Views: 8214

Re: More granular control of music loops and using tracker files

Thanks to you both for the information. It was very helpful. So I modified the code in this thread to meet my needs for looping, and that worked perfectly. mSource = love.sound.newDecoder('path/to/music/song.mp3', 2048) -- Default, but this should be smaller, imo. qSource = love.audio.newQueueableSo...
by manadream
Sat Oct 05, 2019 11:20 pm
Forum: Support and Development
Topic: More granular control of music loops and using tracker files
Replies: 11
Views: 8214

More granular control of music loops and using tracker files

Hello all, I've been developing on Love for the last 6 months or so and I love it (no pun intended). However, I have so far been unable to accomplish what I am wanting to do in regards to controlling music, specifically controlling the looping of it, and I am also wondering if anybody knows of a way...