Hello,
I am trying to get the sound played through javascript. Program runs fine, but there is no sound
Here is the code
var sound_manager = runtimeScene.getGame().getSoundManager(); // get the sound manager
sound_manager.playSoundOnChannel(“soundfile.wav”, 1, true, 100, 1); // play dynamic file sound, channel = 1, loop = true, volume = 100, pitch = 1
Appreciate your guidance. Thank you