• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!
  • Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

Can't play two sounds at once

Gamer (ex-Cantavanda)

〜Flower Prince〜
Hello!
I'm using GM8.

I cannot play two sounds at the same time. I tried both wav, both mp3, one wav one mp3, I tried checking "normal sound", "background music", "use multimedia player", in all combinations, but nothing worked!
What do I do?

Thanks!
 

Gamebot

Member
Thats a bit odd I just tested mine and it works fine.
I created an object and wrote this in step:

GML:
if (keyboard_check_pressed(vk_space) ) {
  sound_play(sound0)
  sound_play(sound1)
}
A bit of code might help us a bit more...

EDIT: By chance did you use sound_volume or sound_fade?
 
Last edited:
Top