Unity3D播放音频片段时只会失真

时间:2014-11-30 04:56:33

标签: audio unity3d

我在播放音频片段时遇到了很多麻烦。我怀疑它与每次执行将剪辑发送到音频源的代码块从一开始更新播放剪辑有关。以下是一个解决方案'但它起作用的事实对我来说甚至没有意义。如果我只是将audio.play()放在主if语句中而不检查它是否小于音频片段长度,我听到的只是一个安静的失真。

void Update()
{
switch(weatherState)
    {
    case WeatherStates.Sunny:

        break;
    case WeatherStates.Rain:
        Rain();
        break; 
    case WeatherStates.Snow:

        break;

    case WeatherStates.ThunderStorm:

        break; 
    }

}


void Rain()
{
    if(timeScript.hourOfWeatherEvent != 0)
    {

        if(timeScript.hourCount >= timeScript.hourOfWeatherEvent)
        {
            rain.SetActive(true); 
            if(soundCount < weatherSounds[0].length)
            {
                soundCount++; 
                audio.clip = weatherSounds[0];
                audio.Play ();
            }
            timeScript.durationOfWeatherEvent -= Time.deltaTime * timeScript.timeSpeed;

            if(timeScript.durationOfWeatherEvent <= 0)
            {
                rain.SetActive(false); 
                timeScript.durationOfWeatherEvent = 0; 
                timeScript.hourOfWeatherEvent = 0; 
                weatherState = WeatherStates.Sunny; 
            }
        }
    }
}

0 个答案:

没有答案