如何使用 FMOD 延迟每个扬声器中的声音?
我设置了支持多通道的声音,所以现在我需要延迟每个扬声器中的声音。我如何使用 FMODex 做到这一点?可以这样做吗?
谢谢你帮助我! :)
I setted up a sound with multichannelsupport so now I need to delay the sound in each single speaker. How can I do this with FMODex? Is it possible to do that?
Thanks for helping me! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以我自己和 fmod.org 已经找到了我的问题的答案。我必须使用
FMOD_DSP_TYPE_DELAY
。使用这种类型,我可以将每个通道的延迟设置为最多 10 秒。更多信息可以在 fmod 的文档中找到。~更新~
感兴趣的 fmod 用户的一些代码:
So I've got an answer to my question by myself and fmod.org. I have to use the
FMOD_DSP_TYPE_DELAY
. With this type I can set the delay for each channel up to 10 seconds. More informations could be found in the documentation from fmod.~Update~
Some code for interested fmod users: