sound volume help
by Dion Bailey · in Torque Game Engine · 06/03/2003 (6:03 am) · 4 replies
when my sound files play, they play really low, you can just about here they are playing, does anyone know why? or how to turn up the volume on them?
#2
When i play the wav file through a media player it plays at a correct volume.
datablock AudioDescription(AudioDefault3d)
{
volume = 100.0;
isLooping= false;
is3D = true;
ReferenceDistance= 20.0;
MaxDistance= 100.0;
type = $SimAudioType;
};
datablock AudioProfile(thanks)
{
fileName = "~/data/sound/winner.wav";
description = AudioDefault3d;
preload = true;
};
06/03/2003 (10:10 am)
Here's the code im using. when the wav file is triggered its really low to the point where i turn the volume up to the max and still have to put my ear to the Speaker. When i play the wav file through a media player it plays at a correct volume.
datablock AudioDescription(AudioDefault3d)
{
volume = 100.0;
isLooping= false;
is3D = true;
ReferenceDistance= 20.0;
MaxDistance= 100.0;
type = $SimAudioType;
};
datablock AudioProfile(thanks)
{
fileName = "~/data/sound/winner.wav";
description = AudioDefault3d;
preload = true;
};
#3
06/03/2003 (10:51 am)
You have it marked as 3D... which means you'll only be able to hear it within a certain distance, and the closer you get the louder it is. Are you standing right next to the emmitter when listening for the sound?
#4
06/04/2003 (12:22 am)
yeah im standing right next to it and it sounds so low.
Associate Paul Dana