how is it possible to change the range of sounds?
i've tried this
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?