1

有没有办法只在 Fmod 中为 iPhone 开发设置距离参数?我可以在 Fmod Designer 中设置 3D Max och Min Distance。我只想在 Fmod 中使用距离特征而不是角度特征。

在下面的代码中,我将听者的位置添加到声音中,但我只想添加听者和声音之间的距离:

    listenerpos.y = (float)33.0f * DISTANCEFACTOR;
    result = system->set3DListenerAttributes(0, &listenerpos, &vel, &forward, &up);
4

1 回答 1

0

如果您不想更新 System::set3DListenerAttributes 的任何特定参数,只需传入 0 或 NULL。

system->set3DListenerAttributes(0, &listenerpos, NULL, NULL, NULL);
于 2011-07-01T00:39:41.803 回答