[ASK & SHARE] Game Editor Alsa (Ubuntu user)

Firstly I want to ask, has the Game Editor Alsa version been fixed for the exported exe to be able to play music and sound? I don't know where to check the recent update.
Since the Game Editor Alsa I use currently the sound and music only work in editor mode (still silent in export version), I use this method to run export with music:
1. Download pulseaudio-utils through terminal:
2. Make a bash script to run the export file with text editor:
Save it in the same directory with your export file. Name it "Runner.sh" or something.
That's all. Double click Runner.sh to run your game. You will be able to hear the music and sound this time.
Since the Game Editor Alsa I use currently the sound and music only work in editor mode (still silent in export version), I use this method to run export with music:
1. Download pulseaudio-utils through terminal:
- Code: Select all
apt-get install pulseaudio-utils
2. Make a bash script to run the export file with text editor:
- Code: Select all
#!/bin/bash
padsp ./YourExportFileNameHere
Save it in the same directory with your export file. Name it "Runner.sh" or something.
That's all. Double click Runner.sh to run your game. You will be able to hear the music and sound this time.