Comments

Log in with itch.io to leave a comment.

(+1)

Seabass !!! Been a while , hope you are doing well :)

The game your working on right now looking great

wish i knew about this audio system sooner !! didnt even know you had a itch shop xD your awesome as always . cheers 

(+1)

Hey Almog! :D I remember you! I hope the system helps. It's definitely been useful for me on my project.

Hi Seabass! Do i need to destroy obj_saudio (persistent) when game ends? Thank you!

(+1)

If you are restarting the game yes. If you are actually closing the game then no.

(+1)

I'm new to gamemaker, how does this differ from using the provided functions, like audio_play_sound_at?

It's quite different in that it provides groups. So you can write...

music_group = saudio_group_create(false);

And when you play a sound...

saudio_sound_play(music_group,snd_boop);

The gain of the sound is relative to the gain of the group. This is super useful if you want to let the player adjust the volume of music for example. If you wanted to adjust the gain of a sound created with audio_play_sound_at() you wouldn't be able to at the same time lower the gain of that sound to match a players volume preference.

This framework also provides ease of use functions like crossfading and looping. It makes 3D sound especially easy as well since you don't have to mess around with listener orientation. You can just set the position to your desired x, y, z.

(+1)

Thank you! That makes sense to me. : ) Is there a way to tweak the sound radius and fall off? Like "I want you to be able to hear this sound starting from here and it should peak loudness there"?

That's available natively in Game Maker. I hide that functionality away for the sake of simplicity but you can easily edit the functions to provide those arguments.

(+1)

I wish I wasn't so far into development b/c I'd love to make the jump to 2.3 and use this. Maybe I'll use it for future projects :)

Do you think it'd be worth me porting this backwards for 2.2?

(+2)

Too late, I've already ported it backwards, just for you. <3

whoa that was quick. Thank you!!!