Author Topic: changing the range of sounds  (Read 688 times)

how is it possible to change the range of sounds?
i've tried this

Code: [Select]
datablock SFXDescription(AudioReallyFar3d) 
   { 
volume = 1.0;
pitch = 1.0;
isLooping = false; 
isStreaming = false;
is3D = true;
referenceDistance = 400;
maxDistance = 750;
type = $SimAudioType;
   }; 
datablock AudioProfile(NukeRocketExplodeSound)
   {
      filename    = "./kaboom.wav";
      description = AudioReallyFar3d;
      preload = true;
   };
but i don't hear anything
could anyone help?

i got it to work, i changed it from datablock SFXDescription(AudioReallyFar3d) to datablock AudioDescription(AudioReallyFar3d)