有没有办法在Fmod中为iPhone开发设置distance参数?我可以在Fmod Designer中设置3D Max och Min Distance。我想只使用距离特征而不是Fmod中的角度特征。
在下面的代码中,我将侦听器的位置添加到声音中,但我只想添加侦听器和声音之间的距离:
listenerpos.y = (float)33.0f * DISTANCEFACTOR;
result = system->set3DListenerAttributes(0, &listenerpos, &vel, &forward, &up);
答案 0 :(得分:0)
如果您不想更新System :: set3DListenerAttributes的任何特定参数,只需传入0或NULL。
system->set3DListenerAttributes(0, &listenerpos, NULL, NULL, NULL);