Fmod距离参数
iPhone开发有没有办法只在Fmod中设置距离参数?我可以在 Fmod Designer 中设置 3D Max och Min Distance。我想在 Fmod 中只使用距离特征而不使用角度特征。
在下面的代码中,我将听者的位置添加到声音中,但我只想添加听者和声音之间的距离:
listenerpos.y = (float)33.0f * DISTANCEFACTOR;
result = system->set3DListenerAttributes(0, &listenerpos, &vel, &forward, &up);
Is there a way to only set the distance parameter in Fmod for iPhone development? I can set 3D Max och Min Distance in Fmod Designer. I would like to only use the distance feature and not the angle feature in Fmod.
In the following code I add the position of the listener to the sound, but I want to just add the distance between the listener and the sound:
listenerpos.y = (float)33.0f * DISTANCEFACTOR;
result = system->set3DListenerAttributes(0, &listenerpos, &vel, &forward, &up);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不想更新 System::set3DListenerAttributes 的任何特定参数,只需传入 0 或 NULL。
If you don't want to update any particular parameter for System::set3DListenerAttributes, simply pass in 0 or NULL.