Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Fmod 中设置采样率?
我使用以下代码启动我的事件系统。我可以将采样率添加到此方法中吗?
result = eventSystem->init(32, FMOD_INIT_NORMAL | FMOD_INIT_ENABLE_PROFILE, NULL, FMOD_EVENT_INIT_NORMAL);
不,要指定系统的采样率,您需要使用 System::setSoftwareFormat。
要使用 EventSystem 执行此操作,您必须创建一个 EventSystem 对象,然后调用 EventSystem::getSystemObject,您可以使用该 System 对象调用 System::setSoftwareFormat 指定采样率。所有这些都发生在您初始化 EventSystem 对象之前。