I'm trying to get the 'HeavyRain' and 'MistyRain' precipitation data to play the rain.wav sound, but it doesn't seem to work, i don't know if it's possible or not to have a sound play for Precipitation data, but i'd like some help with this
//-----------------------------------------------------------------------------
datablock AudioProfile(HeavyRainSound)
{
filename = "./rain.wav";
description = AudioLooping2D;
preload = true;
};
datablock PrecipitationData(HeavyRain)
{
soundProfile = "HeavyRainSound";
dropTexture = "./rain";
splashTexture = "./water_splash";
dropSize = 0.75;
splashSize = 0.2;
useTrueBillboards = false;
splashMS = 250;
};
datablock PrecipitationData(MistyRain)
{
soundProfile = "HeavyRainSound";
dropTexture = "./mist";
splashTexture = "./mist2";
dropSize = 10;
splashSize = 0.1;
useTrueBillboards = false;
splashMS = 250;
};
//-----------------------------------------------------------------------------
Also, my apologizes to Space Guy for bugging him first :P