Fmod距离参数

发布于 2024-11-17 20:54:23 字数 335 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

始终不够爱げ你 2024-11-24 20:54:23

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

system->set3DListenerAttributes(0, &listenerpos, NULL, NULL, NULL);

If you don't want to update any particular parameter for System::set3DListenerAttributes, simply pass in 0 or NULL.

system->set3DListenerAttributes(0, &listenerpos, NULL, NULL, NULL);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文